码迷,mamicode.com
首页 > Web开发 > 详细

css初级代码

时间:2016-08-07 22:59:34      阅读:259      评论:0      收藏:0      [点我收藏+]

标签:

<!DOCTYPE html>
<html lang="zh-cn">
<head>
    <meta charset="utf-8">
    <title>项目实战--PC端固定布局</title>
    <link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>

<nav id="nav">
    <section class="center">
        <h1>旅游</h1>
        <ul class="link">
            <li class="active"><a href="###">首页</a></li>
            <li><a href="###">资讯</a></li>
            <li><a href="###">新闻</a></li>
            <li><a href="###">简介</a></li>
        </ul>
    </section>
    
</nav>


<header>header</header>
<section>body</section>
<footer>footer</footer>

</body>
</html>
技术分享
@charset "utf-8";

body,h1,ul{
    margin: 0;
    padding: 0;
}

ul{
    list-style: outside none none; //简写属性 在一个声明中设置所有的列表属性。
}

a{
    text-decoration: none; //CSS文字修饰为无;一般用于设置清除超链接的默认下划线:
}

#nav {
    width: 100%;
    height: 70px;
    background-color: #333;
}
.center{
    width: 1263px;
    height: 70px;
    margin: 0 auto;

}
.center h1{
    width: 240px;
    height: 70px;
    text-indent: -9999px;
    float: left;
}
.link{
    width: 650px;
    height: 70px;
    line-height: 70px;
    color: #eee;
    float: right;
}
.link li{
    width: 120px;
    text-align: center;
    float: left;
}
.link a{
    color: #eee;
    display: block; //
}

.link a:hover,
.active a{
    background-color: #000;
}
style.css

 

css初级代码

标签:

原文地址:http://www.cnblogs.com/ransky/p/5747430.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!