I have a table, where there is 3 td's below each other and one larger one next to them with rowspan="3". Could anyone tell me why the individual td heights on the 3 on the side (the top 2 are specific heights, and the 3rd continues) are ignoring their specified height? The problem only occurs in IE.
Code: Select all
<tr>
<td height="100"></td>
<td colspan="3"></td>
</tr>
<tr>
<td height="100"></td>
</tr>
<tr>
<td></td>
</tr>
Code: Select all
<tr>
<td height="250"></td> //Suposed to be 100px
<td colspan="3"></td>
</tr>
<tr>
<td height="130"></td> //Suposed to be 100px
</tr>
<tr>
<td></td>
</tr>