blob: 177d6afb97af58e73018dba79800ceeeec5adb3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
<!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>
|