FireFox and Tables vs IE and Tables
Posted: Sat Sep 11, 2004 10:55 am
I created the following table and tested it in FireFox 0.9.3 and IE 6.0
To my surprise IE displayed the correct layout whereas firefox didn't
Table that works as expected in IE:
In order for me to get this to work in FireFox I have to add the following row to the end of the table:
You can see an example of this here. Is there a way to do this so FireFox will read it without adding that additional row?
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>