View Full Version : Wrapping text around a picture?


Pamela
02-08-2006, 01:13 AM
Yea how would I do that?

Saeritha
02-08-2006, 01:22 AM
You could use CSS:

.floatimgleft {
float:left;
margin-top:10px;
margin-right:10px;
margin-bottom:10px;
}

Then in the body, <img class="floatimgleft" src="img1.jpg">

Or you can just do this:

<img src="img1.jpg" align="left">

The align=left attribute places the image flush left.
BUT, it also instructs all text, headers, horizontal rules, further in-line images and lists to wrap around the image.