<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>导航条02</title>
<style type="text/css">
ul{
width: 960px;
height: 40px;
background-color: #55a8ea;
margin: 100px auto;
padding: 0;
}
li{
list-style: none;
float: left;
width: 100px;
font: 14px 雅黑;
}
a{
text-decoration: none;
color: #fff;
display: block;
line-height: 40px;
text-align: center;
}
a:hover{
background-color: #00619f;
}
.img{
position: absolute;
left: 720px;
top: 92px;
}
</style>
</head>
<body>
<div class="nav">
<ul>
<li><a href="#">首页</a></li>
<li><a href="#">网站建设</a></li>
<li><a href="#">程序开发</a></li>
<li><a href="#">网络营销</a></li>
<li><a href="#">企业VI</a></li>
<li><a href="#">案例展示</a></li>
<li><a href="#">联系我们</a></li>
</ul>
<div class="img">
<img src="img/1.png">
</div>
</div>
</body>
</html>
image.png
网友评论