sussexwolf said:
I have a website created with Word and wish to put 2 tables side by side on a
page.
The classic answer is to create an outer table, with a single row and
two columns. Then put your two tables, one in each cell. You set the
outer cell to have narrow, or no borders, and no lines around the cells.
Import this HTML into Word to see the effect:
<TABLE WIDTH=100% CELLSPACING=0 CELLPADDING=0>
<TR><TD WIDTH=50%>
<!-- Your Left table goes here -->
<TABLE WIDTH=100% BORDER>
<TR><TD>Left Col1</TD><TD>Left Col2</TD></TR>
<!-- more rows in left table -->
</TABLE></TD>
<TD WIDTH=50%>
<!-- Right table goes here -->
<TABLE WIDTH=100% BORDER>
<TR><TD>Right Col1</TD><TD>Right Col2</TD></TR>
<!-- more rows in right table -->
</TABLE></TD></TR>
</TABLE>