Wrappng html text around images

How do I wrap html text around or next to images? I have a lot of wasted "white space" because the text is either above or after the images. I get:<br />
---------------------<br />
|xxxxxxxxxxx|<br />
|xx[image]xxx|<br />
--------------------- text is here<br />
I want:<br />
---------------------<br />
|xxxxxxxxxxx| text to be here<br />
|xx[image]xxx| and here, etc.,<br />
--------------------- etc.<br />
<br />
Any help is appreciated.<!--content-->There is a simple way to do this, within the table put the image in one cell and the text in another right beside it like this:<br />
<br />
<table width=100% cellpadding=0 cellspacing=0 border=0><br />
<tr><br />
<td><br />
...image...<br />
</td><br />
<td><br />
...text...<br />
</td><br />
</tr><br />
</table><!--content-->
 
Back
Top