blob: bf0b0a81a931468511ac7bc3c0601aa9914e30d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Reference</title>
<style>
table:before {
content: "1";
}
table {
color: green;
border: 2px solid black;
}
</style>
<body>
<p>Test passes if the number "1" appears in the box below.</p>
<table>
<tr>
<td></td>
</tr>
</table>
</body>
|