View Full Version : aligning tables


BlackRose
05-30-2003, 11:13 PM
im having problems with tables im making a site layout and i want the tables like this


table 1 table 2 table 3


but instead the tables go underneith eachoher there still like the tablesabove but it goes down like a staircase
which isnt what i want!
how can i fix this?

amicus
05-30-2003, 11:59 PM
you can't make a table side by side. you'll have to make 1 table and make 3 columns and inside each column put a table.

<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td>table 1 here</td>
<td>table 2 here</td>
<td>table 3 here</td>
</tr>
</table>