Helpful Information
 
 
Category: HTML & CSS
Wrapping text around images

As titled, what's the best method?

I think it's float:top, but not certain. Giver a try :)

<IMG ... ALIGN="left|right">

here's the best method... give the image VSpace and HSpace attributes.

<img src="your_image" hspace="1" vspace="1">

Your text will wrap around it easily.

~Quack

or, make a table with the image in one cell and the text in an adjacent cell:

<table>
<tr>
<td>
<img src="pics/bigd.gif">
</td>
<td>
yada yada yada
</td>
</tr>
</table>










privacy (GDPR)