私は中央のdivを持っています。サブディビジョン(赤)は、中央のディビジョンとオーバーラップする必要があります。それはまったく問題ありません。
ここで、オーバーラップdiv(緑)に続くdivを垂直に正しく配置する必要があります(オーバーラップするdivの後)。では、絶対位置と相対位置を混在させる可能性はありますか?
これが私のコードです:
HTML:
<div id="container">
blubb
<div id="overlap">
Content goes here.
</div>
<div id="after">
after.
</div>
</div>
CSS:
#container{
width:100px;
height:400px;
background:#ccc;
margin:0 auto;
}
#overlap{
position:absolute;
left:0;
right:0;
height:100px;
background:red;
color:white;
}
#after{
position:relative;
height:100px;
background:green;
color:white;
}
jsfiddleへのリンクもあります。