-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path雪碧图.html
108 lines (98 loc) · 2.15 KB
/
雪碧图.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>good job </title>
<style type="text/css">
blockquote, body, button, dd, dl, dt, fieldset, form, h1, h2, h3, h4, h5, h6, hr, input,
legend, li, ol, p, pre, td, textarea, th, ul{
margin: 0;
padding: 0;
}
h3 {
display: block;
margin: 0;
padding: 0;
}
.cat {
position: relative;
width: 150px;
background: #f8f8f8;
border: 1px solid #bbb;
}
ol, ul {
list-style: none;
}
li {
z-index: 2;
position: relative;
/* display: block; */
height: 31px;
line-height: 31px;
overflow: hidden;
margin: 1px 10px 0;
/* vertical-align: bottom; */
border-bottom: 1px solid #dedede
}
li h3 {
font-size: 14px;
font-weight: 400;
}
li i {
/* display: inline; */
float: left;
margin: 3px 10px 0 0;
height: 24px;
width: 30px
}
/* 在这里补充雪碧图的样式 */
.cat i{background:url(http://img.mukewang.com/539a950e00015ba500710200.jpg) no-repeat;}
.cat-1 i{background-position:0 0;}
.cat-2 i{background-position:0 -24px;}
.cat-3 i{background-position:0 -48px;}
.cat-4 i{background-position:0 -72px;}
.cat-5 i{background-position:0 -96px;}
.cat-6 i{background-position:0 -120px;}
.cat-7 i{background-position:0 -144px;}
.cat-8 i{background-position:0 -168px;}
</style>
</head>
<body>
<div class="cat ">
<ul >
<li class="cat-1">
<i></i>
<h3>服装内衣</h3>
</li>
<li class="cat-2 ">
<i></i>
<h3>鞋包配饰</h3>
</li>
<li class="cat-3 ">
<i></i>
<h3>运动户外</h3>
</li>
<li class="cat-4 ">
<i></i>
<h3>珠宝手表</h3>
</li>
<li class="cat-5 ">
<i></i>
<h3>手机数码</h3>
</li>
<li class="cat-6 ">
<i></i>
<h3>家电办公</h3>
</li>
<li class="cat-7 ">
<i></i>
<h3>护肤彩妆</h3>
</li>
<li class="cat-8 ">
<i></i>
<h3>母婴用品</h3>
</li>
</ul>
</div>
</body>
</html>