| 
 Posted by Jonathan N. Little on 06/28/74 11:50 
cronoklee@hotmail.com wrote: 
> Hi, I have an undefined number of small tables one after another which 
> list results from a database. I really need for them to wrap to the 
> next line if / when they hit the edge of the page but I can't find an 
> option to do this. I've tried align="left" which works fperfectly or 
> images but not for tables. Can anyone help me out?  
 
CSS is your answer, in your stylesheet: 
 
TABLE.results { float: left; margin: .5em; } 
 
your Markup: 
 
<table class="results"> 
   <tr> 
     <td>data</td>... 
 
--  
Take care, 
  
Jonathan 
------------------- 
LITTLE WORKS STUDIO 
http://www.LittleWorksStudio.com
 
[Back to original message] 
 |