Skip to content

README - Markdown Question #113697

Answered by mapluisch
JordanPicton asked this question in Profile
Mar 22, 2024 · 4 comments · 7 replies
Discussion options

You must be logged in to vote

Hey Jordan,

have you tried wrapping your images into a good old HTML table? You could specify 2 rows and 4 cols and put the matching images into the respective cells.

So basically

<table>
    <tr>
        <td>1A</td>
        <td>2A</td>
        <td>3A</td>
        <td>4A</td>
    </tr>
    <tr>
        <td>1B</td>
        <td>2B</td>
        <td>3B</td>
        <td>4B</td>
    </tr>
</table>

and replace the placeholder vals with your <img> tags.

Replies: 4 comments 7 replies

Comment options

You must be logged in to vote
2 replies
@JordanPicton
Comment options

@JordanPicton
Comment options

Comment options

You must be logged in to vote
1 reply
@JordanPicton
Comment options

Comment options

You must be logged in to vote
3 replies
@JordanPicton
Comment options

@mapluisch
Comment options

@JordanPicton
Comment options

Answer selected by JordanPicton
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment