-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathnav.html
80 lines (71 loc) · 1.66 KB
/
nav.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Nav</title>
<style>
* {
margin: 0;
padding: 0;
}
nav {
margin: 50px;
width: 150px;
}
.list ul {
border: 1px solid #f00;
border-radius: 3px;
padding: 5px 10px 3px;
}
.list li {
list-style-type: none;
/* padding: 3px 10px; */
}
/* 等价于下面的注释部分 */
.list li+li a {
border-top: 1px solid #f00;
}
/* .list li+li {
border-top: 1px solid #f00;
} */
/* .list li {
border-top: 1px solid #f00;
}
.list li:first-child {
border-top: none;
} */
.list a {
text-decoration: none;
font: 20px 'Exo', helvetica, arial, sans-serif;
font-weight: 400;
color: #000;
/* background: #ffed53; */
display: block;
padding: 3px 10px;
}
.list a:hover {
color: #069;
}
</style>
</head>
<body>
<nav class="list">
<ul>
<li>
<a href="#">Alternative</a>
</li>
<li>
<a href="#">Country</a>
</li>
<li>
<a href="#">Jazz</a>
</li>
<li>
<a href="#">Rock</a>
</li>
</ul>
</nav>
</body>
</html>