-
Notifications
You must be signed in to change notification settings - Fork 0
/
css8.html
67 lines (67 loc) · 1.43 KB
/
css8.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>css列表样式</title>
<style>
<!-- 不同的列表项标记 -->
ul.a {list-style-type:circle;}
ul.b {list-style-type:square;}
ol.c {list-style-type:upper-roman;}
ol.d {list-style-type:lower-alpha;}
<!-- 作为列表项标记的图像 -->
ul.e
{
list-style-image:url("http//www.w3cschool.cn/statics/images/w3c/sqpurple.gif");
}
<!-- 浏览器兼容性解决方案 -->
ul.f
{
list-style-type: none;
padding:0px;
margin:0px;
}
ul.f li.f
{
background-image:url("http//www.w3cschool.cn/statics/images/w3c/sqpurple.gif");
background-repeat:no-repeat;
background-position:0px 5px;
padding-left:14px;
}
</style>
</head>
<body>
<p>无序列表实例:</p>
<ul class="a">
<li>coffee</li>
<li>tea</li>
<li>coca</li>
</ul>
<ul class="b">
<li>coffee</li>
<li>tea</li>
<li>coca</li>
</ul>
<p>无序列表实例:</p>
<ol class="c">
<li>coffee</li>
<li>tea</li>
<li>coca</li>
</ol>
<ol class="d">
<li>coffee</li>
<li>tea</li>
<li>coca</li>
</ol>
<ul class="e">
<li>coffee</li>
<li>tea</li>
<li>coca</li>
</ul>
<ul class="f">
<li class="f">coffee</li>
<li>tea</li>
<li>coca</li>
</ul>
</body>
</html>