-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrowmenu.html
52 lines (52 loc) · 1.06 KB
/
rowmenu.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>rowmenu</title>
<style>
body{
margin: 0;
padding: 0;
}
ul,ol{
list-style: none;
margin: 0;
padding: 0;
}
a{
text-decoration: none;
}
#menu {
width: 500px;
height: 30px;
}
#menu li{
float: left;
/*width: 100px;*/
/*height: 30px;*/
background-color: aqua;
margin-left: 5px;
}
#menu a{
float: left;
width: 100px;
height: 30px;
line-height: 30px;
text-align: center;
color: #fff;
}
#menu a:hover
{
background-color: #00FF00;
}
</style>
</head>
<body>
<ul id="menu">
<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>