-
Notifications
You must be signed in to change notification settings - Fork 0
/
46新浪导航.html
41 lines (38 loc) · 956 Bytes
/
46新浪导航.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.box {
height: 40px;
background-color: #fff;
border-top: 3px solid #ff8500;
border-bottom: 1px solid #edeef0;
}
.box > a {
width: 80px;
height: 40px;
display: inline-block;
text-align: center;
line-height: 40px;
text-decoration: none;
color: #4c4c4c;
font-size: 12px;
}
.box > a:hover{
color: #ff8400;
background-color: #edeef0;
}
</style>
</head>
<body>
<div class="box">
<a href="#">新浪导航</a>
<a href="#">新浪导航</a>
<a href="#">新浪导航</a>
<a href="#">新浪导航</a>
</div>
</body>
</html>