Coded the following table:
<table width="500px" border="1">
<tr>
<td width="90" height="300" rowspan="4" >Col 1</td>
</tr>
<tr>
<td colspan="2">Col Span 2</td>
</tr>
<tr>
<td>Detail</td>
<td>Detail</td>
</tr>
<tr>
<td>Detail</td>
<td>Detail</td>
</tr>
<tr>
<td width="90" height="300" rowspan="4" >Col 1</td>
</tr>
<tr>
<td colspan="2">Col Span 2</td>
</tr>
<tr>
<td>Detail</td>
<td>Detail</td>
</tr>
<tr>
<td>Detail</td>
<td>Detail</td>
</tr>
</table>
I expected the second 3 rows to expand vertically to match the height of the 1st column.
What am I doing wrong here?