This is probably a simple question, but I can't figure it out. I would like to use CSS to put an image on the right side of a page and not wrap text around it. I would like it like this:
------------ | img | | | ------------ text text text text text text text ....
If I do a float:right on the image, I get this:
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 to do this, but I would like pure CSS.