CSS盒子模型-盒子模型应用

.html




    
    盒子模型应用
    


    




.css

/*通配符,把所有的内边距,外边距调为0*/
*{
    margin: 0px;
    padding: 0px;
}
.top{
    width: 100%;
    height: 50px;
    background-color: black;
}
.top_content{
    width: 75%;
    height: 50px;
    background-color: purple;
    /*外边距为0,自适应会有居中的效果*/
    margin: 0px auto;
}
.body{
    width: 75%;
    /*外边距为0,自适应,会有居中的效果*/
    margin: 20px auto;
    height: 1500px;
    background-color: antiquewhite;

}
.body_img{
    width: 100%;/*是充满body的宽度*/
    height: 400px;
    background-color: darkgoldenrod;
}
.body_content{
    width: 100%;
    height: 1100px;
    background-color: blueviolet;
}
.body_no{
    width: 100%;
    height: 50px;
    background-color: aquamarine;
}
.footing{
    width: 75%;
    height: 400px;
    background-color: brown;
    margin: 0px auto;
}
.footing_content{
    width: 100%;
    height: 330px;
    background-color: cornflowerblue;
}
.footing_subnav{
    width: 100%;
    height: 70px;
    background-color: black;
}

在浏览器展示效果:

CSS盒子模型-盒子模型应用_第1张图片


你可能感兴趣的:(CSS,基础教程学习笔记)