For those who doubt that </TD> and </TR> tags are important for some browsers, I dedicate this page to you.
This bug, and similar ones, can be found in Netscape 2.0 through to 4.8.
<!-- outer table --> <TABLE BORDER=5> <TR> <TD ALIGN="center"> <B>Foo Bar</B> <!-- inner table --> <TABLE BORDER=2> <TR> <TD BGCOLOR="red">A <TD BGCOLOR="magenta">B <TR> <TD BGCOLOR="yellow">C <TD BGCOLOR="lime">D </TABLE> </TABLE>
Foo Bar
|
Below are two screenshots. Netscape screws up, Opera gets it right.
<TABLE BORDER=5> <TR> <TD ALIGN="center"> <B>Foo Bar</B> <!-- inner table --> <TABLE BORDER=2> <TR> <TD BGCOLOR="red">A</TD> <TD BGCOLOR="magenta">B</TD> </TR> <TR> <TD BGCOLOR="yellow">C</TD> <TD BGCOLOR="lime">D</TD> </TR> </TABLE> </TD> </TR> </TABLE>
Foo Bar
|
Netscape is now able to render the sample.