Forum Moderators: not2easy
I have a table inside a column of another table. For example,
<table>
<tr>
<td> </td>
<td>
<table id="table-X">
<tr><td>ABC</td>
<tr><td>DEF</td>
<tr><td>GHI</td>
...
</table>
</td>
</tr>
</table>
The problem I'm having is that the inner table (table_X), by default, aligns vertically with respect to the column of the outer table. What attribute can I use to make table-X aligns to the top of the column ?
Thanks a lot.