If I were to create 2 different sets of tables like this:
<table id="Table1">
<tr>
<td></td><td></td><td></td>
</tr>
</table>
<table id="Table2">
<tr>
<td></td><td></td><td></td><td></td>
</tr>
</table>
One table has 3 columns while the other has 4 columns.
Is there a way to style both tables so that the width of Table1's cells is 1/3 of the table's total width, and Table2's cells are 1/4 of the table's width?
edit: I just want to note that setting the table width to 100% won't work for me because some text in the columns is too wide.