-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path垂直导航菜单.html
45 lines (43 loc) · 902 Bytes
/
垂直导航菜单.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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>垂直导航菜单</title>
<style>
*{
margin: 0;
padding: 0;
}
ul{
text-decoration: none;
}
li{
width: 100px;
height: 30px;
background: red;
margin-bottom: 5px;
text-decoration: none;
}
a{
width: 100px;
height: 30px;
display: block;
text-decoration: none;
color: white;
text-align: center;
line-height: 30px;
}
a:hover{
background: green;
}
</style>
</head>
<body>
<ul>
<li><a href="">Link One</a></li>
<li><a href="">Link Two</a></li>
<li><a href="">Link Three</a></li>
<li><a href="">Link Four</a></li>
</ul>
</body>
</html>