The following code does not correctly display the top line in Chrome (IE8 does fine, I have not tested in other browsers)
<head> </head> <body> <table width="100%" border="1"> <tr> <td width="15%">a</td> <td width="70%">b</td> <td width="15%">c <table border=1> <tr> <td valign="top">Subtotal:</td> <td valign="top">$2,464.34</td> </tr> </table> </td> </tr> <tr> <td colspan="3"> <input type="text" style="width:500px;" /> </td> </tr> </table> </body>
The fixed width in the INPUT control seems to be causing the problem. If I change 500px to 80%, it magically works correctly. Or, if I display the internal table in column "c", it also works.
Why does it look colspan = 3 is ignored? Any ideas?
source share