I seem to have no control over the way my table cells are sizing!
Take this table for example
PHP Code:
<table border="1" width="200" table height="100">
<tr>
<td width="100" height="100" rowspan="2">100 wide, 100 high</td>
<td width="100" height="30">100 wide, coded for 30 high</td>
</tr>
<tr>
<td width="100" height="70">100 wide, coded for 70 high</td>
</tr>
</table>
produces..
<table border="1" width="200" table height="100">
<tr>
<td width="100" height="100" rowspan="2">100 wide, 100 high</td>
<td width="100" height="30">100 wide, coded for 30 high</td>
</tr>
<tr>
<td width="100" height="70">100 wide, coded for 70 high</td>
</tr>
</table>
wTF? Why do the two right cells split evenly, rather than the heights i have specified? Am i doing something wrong?