RetroZilla/layout/html/tests/table/bugs/bug123862.html

1 line
648 B
HTML
Raw Normal View History

2015-10-21 05:03:22 +02:00
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html> <head> <title>Cols and colspan</title> <style type="text/css"> <!-- table {margin: 1em 0; width: 200px; border: 2px solid black;} td {border: 1px solid gray; background: #EFE;} --> </style> </head> <body> <table> <tr> <td>no cols or colspans</td> </tr> </table> <table cols="4"> <tr> <td>cols=4</td> </tr> </table> <table> <tr> <td colspan="4">colspan=4</td> </tr> </table> <table cols="4"> <tr> <td colspan="4">cols=4, colspan=4</td> </tr> </table> <table cols="4"> <tr> <td colspan="4">see previous</td> </tr> </table> </body> </html>