This is probably a simple question, but I canβt understand. I would like to use CSS to place the image on the right side of the page and not wrap the text around it. I would like it to be like this:
------------
| img |
| |
------------
text text text text text text
text ....
If I do float: directly on the image, I get the following:
text text text ------------
text text text | img |
text text text | |
text text text ------------
text text text text text text
text ...
I could easily use tables for this, but I would like to get pure CSS.
source share