-
Notifications
You must be signed in to change notification settings - Fork 14
/
counters.html
47 lines (44 loc) · 904 Bytes
/
counters.html
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
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN"
"http://www.w3.org/TR/REC-html40/strict.dtd">
<html>
<head>
<title>Figure 12-31</title>
<style type="text/css">
ol {counter-reset: ordered;}
ol li {display: block; margin-left: 2.5em;}
ol li:before {counter-increment: ordered;
content: counters(ordered,".") ": ";}
</style>
</head>
<body>
<ol>
<li>Lists
<ol>
<li>Types of Lists</li>
<li>List Item Images</li>
<li>List Marker Positions</li>
<li>List Styles in Shorthand</li>
<li>List Layout</li>
</ol></li>
<li>Generated Content
<ol>
<li>Inserting Generated Content
<ol>
<li>Generated Content and Run-In Content</li>
</ol></li>
<li>Specifying Content
<ol>
<li>Inserting Attribute Values</li>
<li>Generated Quotes</li>
</ol></li>
<li>Counters
<ol>
<li>Resetting and Incrementing</li>
<li>Using Counters</li>
<li>Counters and Scope</li>
</ol></li>
</ol></li>
<li>Conclusion</li>
</ol>
</body>
</html>