I'm trying to keep a cell on the top left side of a table a constant size. Unfortunately in IE with the method I'm using, the two cells that are spanned by a td with rowspan=2 become the same size. If you render the blow code in firefox, it behaves the way I want and expect, but not in IE. Can anyone concieve of a way to make this display properly in IE?
Code:
<table width='400' border='2'>
<tr rowspan='2'>
<td height='10'>
<p> aaa </p>
</td>
<td rowspan='2'>
<p> ccc </p>
<p> ccc </p>
<p> ccc </p>
<p> ccc </p>
<p> ccc </p>
<p> ccc </p>
<p> ccc </p>
<p> ccc </p>
</td>
</tr>
<tr>
<td>
<p> bbb </p>
</td>
</tr>
</table>