-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path菜单.html
54 lines (54 loc) · 1.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>菜单</title>
<style>
body{
background-color: #444;
}
.sh{
list-style-type: none;
border-bottom: 4px solid #939;
padding:10px;
}
.sh li{
float: right;
width: 100px;
height: 36px;
text-align: center;
line-height: 36px;
background-color: #eee;
margin: 3px 2px;
transition:all .8s;
}
.sh li:hover{
cursor: pointer;
padding-top: 20px;
margin-top: -20px;
background-color: #939;
}
.sh li:hover{
height: 40px;
background-color: #939;
}
.sh li a:link{
color: #444;
font: bold 14px/1.5 simsun;
text-decoration: none;
}
.sh li:hover a:visited{
color: #fff;
}
</style>
</head>
<body>
<u1 class="sh">
<li><a href="#">网站导航</a></li>
<li><a href="#">联系客服</a></li>
<li><a href="#">卖家中心</a></li>
<li><a href="#">商品分类</a></li>
<li><a href="#">首页</a></li>
</u1>
</body>
</html>