I have one table with two columns and in each column another table. I am trying to align each table within the column to the top of the table and I'm having issues.
I'm paraphrasing the code here:
<table>
<tr>
<td>
<table>
<tr>
<td>
</td>
</tr>
</table>
</td>
<td>
<table>
<tr>
<td>
</td>
</tr>
</table>
</td>
</tr>
</table>
What would the best way be to align these inner tables with the top of table's cells?