美文网首页
2018-08-12

2018-08-12

作者: ARanEs | 来源:发表于2018-08-12 23:44 被阅读0次
1.png

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style type="text/css">
*{
margin: 0;
padding:0;
}
.box{
width: 960px;
height: 40px;
background-color: #50a7ee;
margin:20px auto;
text-decoration: none;
}
.box ul{
width: 700px;
height: 40px;
background-color: #50a7ee;

    }
    .box ul li{
        width: 100px;
        height: 40px;
        float: left;
        line-height: 40px;
        text-align: center;
        list-style:none;
    }
    .box ul li a{
        text-decoration: none;
        font-size:14px;
        font-family: "雅黑";
        color: #ffffff;
        font-weight: bold;
    }
    .box ul li a:hover{
        background:#0160a2;
        display: block;
    }
</style>

</head>
<body>
<div class="box">
<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</li>
<li><a href="#">案例展示</a></li>
<li><a href="#">联系我们</a></li>
</ul>
</div>
</body>
</html>


2.png

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>机试练习--翻页</title>
<style type="text/css">
*{
margin: 0;
padding: 0;
}
.p{
width: 960px;
height: 42px;
border: gray solid 1px;
margin: 0 auto;
zoom:1;
font-family:雅黑;
font-size:14px;
background-color:white;
}
ul{
list-style: none;
margin:5px 150px;
}
li{
float: left;
margin:0px 5px;
}
ul .cc{
background-color:gold;
}
a{
text-decoration: none;
color: red;
display: block;
padding:5px 10px;
}
a:hover{
background-color: red;
color: white;

    }
</style>

</head>
<body>
<div class="p">
<ul>
<li class="cc"><a href="#">上一页</a></li>
<li class="cc"><a href="#">1</a></li>
<li class="cc"><a href="#">2</a></li>
<li class="cc"><a href="#">3</a></li>
<li class="cc"><a href="#">4</a></li>
<li class="cc"><a href="#">5</a></li>
<li class="cc"><a href="#">6</a></li>
<li>...</li>
<li class="cc"><a href="#">14</a></li>
<li class="cc"><a href="#">15</a></li>
<li class="cc"><a href="#">16</a></li>
<li class="cc"><a href="#">17</a></li>
<li class="cc"><a href="#">下一页</a></li>
</ul>
</div>

</body>
</html>


3.png

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style type="text/css">
.box{
width: 960px;
height: 42px;
margin: 50px auto;
border: 1px black solid;

      }
    .box ul{
        width: 800px;
        height: 42px;
        margin: 0 auto;

    }
    .box ul li{
        width:100px;
        height: 42px;
        float: left;
        line-height: 42px;
        list-style:none;
        color: black;
        text-align: center;
    }
    .box ul li a{
        text-decoration: none;
        padding-right: 20px;
        font-size:14px;
        color: #383838;
        font-weight: bold;


        
    }
    
</style>

</head>
<body>
<div class="box">
<ul>
<li><a href="#">首页</a><span>|</span></li>
<li><a href="#">网站建设</a><span>|</span></li>
<li><a href="#">程序开发</a><span>|</span></li>
<li><a href="#">网络营销</a><span>|</span></li>
<li><a href="#">企业VI</a><span>|</span></li>
<li><a href="#">案例展示</a><span>|</span></li>
<li><a href="#">联系我们</a></li>
</ul>
</div>

</body>
</html>

相关文章

网友评论

      本文标题:2018-08-12

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