标签:
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
</head>
<style>
*{
margin: 0;
padding: 0;
}
/*第一种*/
.box1 ul li{
list-style: none;
display: inline;
}
.box1 ul li a{
padding: 5px 10px;
margin: 0 2px;
border: 1px solid #666;
background-color: #cccccc;
text-decoration: none;
text-align: center;
}
.box1 ul li a:hover{
background-color: #333;
color: #ffffff;
}
/*第二种*/
.box2 ul li {
list-style: none;
float: left;
margin: 0 2px;
padding: 0;
}
.box2 ul li a{
display: block;
width: 100px;
height: 28px;
line-height: 28px;
background-color: #cccccc;
text-decoration: none;
text-align: center;
}
.box2 ul li a:hover{
background-color: #333333;
color: #ffffff;
}
</style>
<body>
<div class="box1">
<ul>
<li><a href="#">Drubjs Menu</a></li>
<li><a href="#">Beer</a></li>
<li><a href="#">Spirits</a></li>
<li><a href="#">Cola</a></li>
<li><a href="#">Lemonade</a></li>
<li><a href="#">Tea</a></li>
<li><a href="#">Coffee</a></li>
</ul>
</div>
<br/>
<hr/>
<br/>
<div class="box2">
<ul>
<li><a href="#">Drubjs Menu</a></li>
<li><a href="#">Beer</a></li>
<li><a href="#">Spirits</a></li>
<li><a href="#">Cola</a></li>
<li><a href="#">Lemonade</a></li>
<li><a href="#">Tea</a></li>
<li><a href="#">Coffee</a></li>
</ul>
</div>
</body>
</html>
标签:
原文地址:http://www.cnblogs.com/520Lei/p/5658894.html