right align an image using CSS HTML

unixman83 picture unixman83 · Mar 7, 2011 · Viewed 208.3k times · Source

How can I right-align an image using CSS.

I do not want the text to wrap-around the image. I want the right aligned image to be on a line by itself.

Answer

alex picture alex · Mar 7, 2011
<img style="float: right;" alt="" src="http://example.com/image.png" />
<div style="clear: right">
   ...text...
</div>    

jsFiddle.