背景封面div中的100%高度div

时间:2013-05-18 18:46:19

标签: css3 responsive-design clearfix

目前我的网页背景图片大小为封面。我希望这个div内有2个div,高度为100%。这些div需要响应。我需要leftside div让图像坐在底部。我在主容器上使用了clearfix,但是类pic仍然在容器1上。

HTML

<div class="main-container1 clearfix">
</div>

<div class="main-container2 clearfix">
 <div class="wrapper">
  <div class="leftside"><img class="pic" src="image/blank.png" /></div>
  <div class="rightside"></div>
 </div>
</div>

CSS

body {
height:100%;
overflow:scroll;
}

.main-container1 {
background-image:url(../images/footballfieldblur.jpg);
background-position:center center;
background-repeat:no-repeat;
background-size:cover;
min-height:100%;

}
.main-container2 {
background-image:url(../images/footballfieldblur.jpg);
background-position:center center;
background-repeat:no-repeat;
background-size:cover;
min-height:100%;

}

.wrapper {
width:90%;
margin:0 auto;
height:100%;
min-height:100%;
}

.leftside {
width:40%;
height:100%;
min-height:100%;
float:left;
position:relative;
}

.rightside {
width:60%;
height:100%;
min-height:100%;
float:right;
position:relative;
}

.pic {
position:absolute;
bottom:0;
}

.clearfix:before,
.clearfix:after {
content: " ";
display: table;
}

.clearfix:after {
clear: both;
}

.clearfix {
*zoom: 1;
}

1 个答案:

答案 0 :(得分:1)

好吧,伙计们我明白了。我的divs没有扩展我的clearfix容器的100%高度,因为clearfix类不是100%高度。

.clearfix {
*zoom: 1;
height:100%;
min-height:100%;
}