Reputation: 1640
I would like to align 2 images wrapped with text but I haven't found any way to do it or any post that could help.
Something like this:
text text text text text image1
text text text text text image2
text text text text text text t
text text text text text text t
Upvotes: 0
Views: 57
Reputation: 15813
You could place it in a table, or like Wesley Murch said, you can use the CSS float and clear properties (float:right;clear:right;
) to move it to the right of the page and prevent text from appearing to the right of the images.
Upvotes: 1