View Full Version : Table by Table


alcaseltzerboy
03-25-2003, 01:40 AM
I would like to know how to position a table by another tables side, without one table going underneathe another table

if you cannot do this in html, then can you do it in iframes?

thanks

Dude128
03-25-2003, 02:05 AM
you could put them inside one large table with one row and two cells:

<table>
<tr>
<td>
Table 1
</td>
<td>
Table 2
</td>
</tr>
</table>

just put your entire table code inside the appropriate cell