I've discovered something quite odd in IE 9 and FF 10.0.4 if you have this type of a table layout:The result is not at all what you would expect:Code:<table cellspacing="0" cellpadding="2" border="1"> <tr> <td colspan="2">Column 1 & 2</td> <td>Column 3</td> </tr> <tr> <td>Col1</td> <td colspan="2">Col 2 & 3</td> </tr> <tr> <td>Col1</td> <td colspan="2">Col 2 & 3</td> </tr> <tr> <td>Col1</td> <td colspan="2">Col 2 & 3</td> </tr> </table>
Anyone have any idea why the last 3 rows are ignoring the colspan=2 on the 3rd cell?




Reply With Quote