我设法溢出了一个父 div,它是一个带有以下 CSS 的内容包装器,但是现在这个 div 隐藏了它后面的内容。我怎样才能做到这一点?
jsfiddle:http: //jsfiddle.net/YMSvU/
我的 HTML 文件
<div class="contentwrapper">
<div class="promotional_outer">
<div class="promotional">
...
</div>
</div>
<div class="footer">
... this footer is overflown by the promotional div ...
</div>
</div>
我的 CSS 文件
.contentwrapper {
width: 1150px;
text-align: left;
margin: 0px auto;
}
.promotional_outer{
background-color: #8fcbe5;
position:absolute;
left: 0;
width: 100%;
overflow: auto;
margin: 0px auto;
clear: both;
}
.promotional {
background-color: #30a3da;
padding: 75px;
color: #fff;
width: 1000px;
margin: 0px auto;
clear: both;
}