我有html页面,容器div包含页眉,内容和页脚div,html cod和css代码如下:
HTML 代码:
<html>
<div class="container">
<div class="header"></div>
<div class="content">
<div class="content2"></div>
</div>
<div class="footer"></div>
</div>
</html>
CSS代码:
header{
padding-bottom:5px;
width:100%;
position:fixed;
top:0;
z-index:100;
height:70px;
background-color:#006}
.content{
min-height: 100%;
width:100%;
background-color:#006;
margin-top:70px;
margin-bottom:60px }
.content2{
margin:auto;
min-height: 100%;
width:95%;
background-color:#FFFEA5;
padding-bottom: 20px;
}
.footer{
text-align:center;
width:100%;
position:fixed;
bottom:0;
z-index:100;
height:70px;
background-color:#006}
我希望 content2 div 是全屏的,或者它不包含任何内容,我执行了上面的代码但没有工作,它看起来像附加的图像。
慕姐4208626
慕桂英3389331
PIPIONE
相关分类