Please open the below code in IE and FF.
As you can see FF shows the right column correctly (its width=70px), whereas IE ignores "width" property and extends the column width
If you set the footer text to something like "Test", then both browsers behaves as expected.
Does anybody have a solution to this?
Code:
<html>
<body>
<table style="width:50%; border-collapse:collapse;" border="1">
<tr style="height:25px;">
<td>data</td>
<td style="width:70px;">data2</td>
</tr>
<tr style="height:25px;">
<td colspan="2" bgcolor="#CCCCCC" align="right">A very long footer name, longer than 70px;</td>
</tr>
</table>
</body>
</html>
As you can see FF shows the right column correctly (its width=70px), whereas IE ignores "width" property and extends the column width
If you set the footer text to something like "Test", then both browsers behaves as expected.
Does anybody have a solution to this?







