I am struggling with a design that involves two tables placed side by side within a main table.
<table>
<tr>
<td style="width: 50%">
<table id="table1">
<tr><td></td></tr>
<tr><td></td></tr>
.
.
<tr><td></td></tr>
</table>
</td>
<td style="width: 50%">
<table id="table2">
<tr><td></td></tr>
<tr><td></td></tr>
.
.
.
.
.
.
<tr><td></td></tr>
</table>
</td>
</tr>
</table>
The issue I'm facing is that the first table (Table1) is shorter than the second table, causing it to be positioned in the middle of its containing cell instead of at the top. Adding padding or margins won't work as Table1's height may vary. I need Table1 to align at the top. Any suggestions?