I have a table containing another table in order to get multiple rows inside a td element. I would like to align the cells Some
, thing A
with Something A
and
Some
, thing B
with Something B
so that they have the same height.
td { border: 1px solid black; }
<table>
<tr>
<td>
<table>
<tr>
<td>
Some
</td>
<td>
thing A
</td>
</tr>
<tr>
<td>
Some
</td>
<td>
thing B
</td>
</tr>
</table>
</td>
<td>
<table>
<tr>
<td>
Something A<br />bigger
</td>
</tr>
<tr>
<td>
Something B<br />bigger
</td>
</tr>
</table>
</td>
</tr>
</table>