实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<style>
5
body {counter-reset:section;}
6
h1 {counter-reset:subsection;}
7
h1:before
8
{
9
counter-increment:section;
10
content:"Section " counter(section) ". ";
11
}
12
h2:before 
13
{
14
counter-increment:subsection;
15
content:counter(section) "." counter(subsection) " ";
16
}
17
</style>
18
</head>
19
20
<body>
21
22
<p><b>Note:</b> IE8 supports these properties only if a !DOCTYPE is specified.</p>
23
24
<h1>HTML tutorials</h1>
25
<h2>HTML Tutorial</h2>
26
<h2>XHTML Tutorial</h2>
27
<h2>CSS Tutorial</h2>
28
29
<h1>Scripting tutorials</h1>
30
<h2>JavaScript</h2>
31
<h2>VBScript</h2>
32
33
<h1>XML tutorials</h1>
34
<h2>XML</h2>
35
<h2>XSL</h2>
36
37
</body>
38
</html>
39