和效果图对不上
直接输入margin:0 auto;结果和设计图根本对不上啊,没人发现么?header栏并没有填满浏览器,反而是main和footer填满了
直接输入margin:0 auto;结果和设计图根本对不上啊,没人发现么?header栏并没有填满浏览器,反而是main和footer填满了
2016-03-19
margin:0 auto,其实就是等价于margin-top:0;margin-bottom:0;margin-left:0;margin-right:0,
输入结果前,代码是这样子的:
<style type="text/css">
body{ margin:0; padding:0; font-size:30px}
div{ text-align:center; font-weight:bold}
.main,.footer{ width:960px; 【任务1】}
.head{ width:100%; height:100px; background:#ccc}
.main{ height:600px; background:#FCC;}
.footer{ height:50px; background:#9CF;}
</style>
输入结果后可以是这样子
<style type="text/css">
body{ margin:0; padding:0; font-size:30px}
div{ text-align:center; font-weight:bold}
.main,.footer{ width:960px;margin:0 auto; }
.head{ width:100%; height:100px; background:#ccc}
.main{ height:600px; background:#FCC;}
.footer{ height:50px; background:#9CF;}
</style>
或
<style type="text/css">
body{ margin:0; padding:0; font-size:30px}
div{ text-align:center; font-weight:bold}
.main,.footer{ width:960px; }
.head{ width:100%; height:100px; background:#ccc}
.main{ height:600px; background:#FCC;margin:0 auto;}
.footer{ height:50px; background:#9CF;margin:0 auto;}
</style>
全屏点开后
举报