blob: 9405c845ce7e7290c64c7e4706c0d6d9d8f95276 (
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
|
<!DOCTYPE html>
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<html><head>
<title>HTML LI element: explicit scope</title>
<link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.org">
<style>
#a::before { content: "1"; }
#b::before { content: "2"; }
#c::before { content: "2.1"; }
#d::before { content: "2.2"; }
</style>
</head>
<body>
<ol>
<li value="1" id="a"></li>
<li value="2" id="b"></li>
<ol><li value="1" id="c"></li></ol>
<li value="2" id="d"></li>
</ol>
</body>
</html>
|