| <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> |
| <html> |
| <head> |
| <title>CSS Test: Table columns - HTML table 'rules' none attribute with cell borders</title> |
| <meta name="assert" content="The first table should have two vertical lines intersecting two horizontal lines."> |
| <style type="text/css"> |
| table |
| { |
| border-collapse: collapse; |
| border-style: solid; |
| border-color: black; |
| } |
| td |
| { |
| border-width: 3px; |
| border-style: solid; |
| border-color: black; |
| height: 2em; |
| width: 2em; |
| } |
| </style> |
| </head> |
| <body> |
| <table rules="all"> |
| <tr> |
| <td></td> |
| <td></td> |
| </tr> |
| <tr> |
| <td></td> |
| <td></td> |
| </tr> |
| <tr> |
| <td></td> |
| <td></td> |
| </tr> |
| </table> |
| </body> |
| </html> |