导航条

作者: 风雨声豪入梦中 | 来源:发表于2018-08-30 17:31 被阅读0次

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>导航条</title>
<style type="text/css">
ul{
margin: 0;
padding: 0;
}
.a{
width:960px;
height: 40px;
background-color: #55a8ea;
margin: 50px auto;
}
.a ul li{
list-style-type: none;
float: left;
width: 100px;
text-align: center;
}
.a ul li a{
text-decoration: none;
color: white;
font-size: 14px;

        line-height: 40px;
            
    }
    .a ul li:hover{
        background-color: #00619f;  
    }
    .f{
        position: relative;
        top: -10px; 
        left: -267px;
    }

</style>

</head>
<body>
<div class="a">
<ul>
<li><a href="">首 页</a></li>
<li><a href="">网站建设</a></li>
<li><a href="">程序开发</a></li>
<li><a href="">网络营销</a></li>
<img src="new.png" class="f">
<li><a href="">企业VI</a></li>
<li><a href="">案例展示</a></li>
<li><a href="">联系我们</a></li>
</ul>
</div>
</body>
<html>

相关文章

网友评论

      本文标题:导航条

      本文链接:https://www.haomeiwen.com/subject/mtydwftx.html