Seeking assistance with my website creation using HTML, CSS, and jQuery. Currently, I have a text layout formatted in two columns with an image placed before the text as shown below:
<div>
<div style="float:right">
<img src="imageSource"/>
</div>
<div style="-webkit-column-count: 2; -moz-column-count: 2; column-count: 2;">
TEXT
</div>
</div>
My desired layout is to have the first column displayed before the image, while the second column appears underneath the picture. How can I achieve this design?