-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrty.html
49 lines (46 loc) · 905 Bytes
/
rty.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.menu{
list-style:none;
border-bottom: 3px solid #ff0;
margin: 30px;
height: 27px;
}
body{
background-color:#0ff ;
}
.menu{
list-style-type: none;
}
.menu li{
float: left;
}
.menu li a:link{
color:#444;
font:bold 14px 黑体;
text-decoration: none;
padding: 10px 20px;
margin: 6px;
background-color: #f0f;
}
.menu li a:hover{
color:#fff;
background-color: #e3e;
}
</style>
</head>
<body>
<div>
<ul class="menu">
<li><a href="//www.baidu.com">百度</a></li>
<li><a href="//www.baidu.com">百度</a></li>
<li><a href="//www.baidu.com">百度</a></li>
<li><a href="//www.baidu.com">百度</a></li>
</ul>
</div>
</body>
</html>