I am looking for a way to have my images wrap with text align in this specific layout:
<html>
text text text text text <br>
text text text text text <br>
______________ text text text <br>
image | text text text <br>
image | text text text <br>
image | text text text <br>
___________| text text text (end)
</html>
I attempted to use the following code:
< DIV style="text-align:justify; text-justify:newspapers; padding:10px; font-size:1ุpx" > text text text text ....
but it didn't produce the desired result, instead showing like this:
______________ <br>
image | text text text text<br>
image | text text text text<br>
image | text text text text<br>
____________| text text text text<br>
text text text text text text
text text text text text text (end)
Is there a method I can implement that doesn't involve manually adjusting the alignment? Since all images and text on my website will be dynamically fetched from the database.