View Full Version : Positioning images


~*AZNPRINCESS*~
07-04-2005, 03:53 AM
Hi, I'm not sure if this is a question about DIVs or HTML, but I'm pretty sure it's the former.

How do you position images so that they wrap into text? Like this:

http://img.photobucket.com/albums/v218/throats/preciousthecripple.jpg

If that doesn't make sense, wrapping a picture into text like you would in microsoft word, so that it's not just on one line, but fits in with the text.

Thanks in advance!

kittycat
07-04-2005, 03:55 AM
<img src="image.gif" align="left">text here

or

<img src="image.gif" style="float: left">text here

Both work the same way, you can change left to right

~*AZNPRINCESS*~
07-04-2005, 07:52 PM
Ahhh, that's it! Thank you so much.