L
Louis
Hello,
How do I have two separate table side by side. Everytime I try the
table goes below.
Thanks
How do I have two separate table side by side. Everytime I try the
table goes below.
Thanks
Murray said:Insert one table with two columns and a single row. Insert a new table into each of the original table's two cells.
Or...
Insert one table with align=left and a second table with align=right
Or...
Use CSS to float the two tables left/right and give one of them a margin big enough to push it to the side of the other.
Or...
(and on and on)
Stefan B Rusynko said:Or use pure html
<div align="center">
<table border="1" width="50%" align="left" id="table1"><tr>
<td> </td></tr><tr><td> </td></tr>
</table>
<table border="1" width="50%" align="right" id="table2"><tr>
<td> </td></tr><tr><td> </td></tr>
</table>
</div>