Forum Moderators: open
I have a jpg that I would like to right justify, and some text (a couple of paragraphs) that I would like to have wrapping around the left.
I usually just use a 2 column table and have the text in the left column, and the jpg in the right column. But that doesn't wrap. How can I make the text wrap around, or can I?
THANKS!
[pre]
<p><img src="img.jpg" class="rightfloat" alt="" />blah
blah blah blah</p>In your Stylesheet:
.rightfloat {
float: right;
margin: 10px; /* puts white space around image */
}[/pre]
Nick
<img src='img/foo.jpg' align='right' vspace='2' hspace='2'> And the text goes around it.
M.