To my surprise IE displayed the correct layout whereas firefox didn't
Table that works as expected in IE:
Code: Select all
<table width="29%" border="1" cellspacing="0" cellpadding="0">
<tr>
<td colspan="2">First Two</td>
<td width="51%"><div align="right">Far Right</div></td>
</tr>
<tr>
<td width="6%" rowspan="2"> </td>
<td colspan="2">Middle Section</td>
</tr>
<tr>
<td colspan="2">More Later</td>
</tr>
<tr>
<td> </td>
<td colspan="2"> </td>
</tr>
</table>Code: Select all
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>