blob: 177d6afb97af58e73018dba79800ceeeec5adb3a [file] [log] [blame]
<!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;
}
td
{
border-style: solid;
height: 2em;
width: 2em;
}
</style>
</head>
<body>
<table>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
</table>
</body>
</html>