blob: 2a24d705b0c42e54cfe23bbafff5be3177d52471 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Reference</title>
<style>
li {
color: green;
border: 2px solid black;
display: block;
}
</style>
<body>
<p>Test passes if only the number "1" appears in the box below.</p>
<ol>
<li>1</li>
</ol>
</body>
|