我想爲所有父級內容製作一個div子元素作爲疊加層,並修正父寬度。 (一個例子可能是你在平時照片畫廊看到JS字幕)Css div相對但絕對
HTML:
<div class="parent">
<div class="child">child</div>
<div class="overlay">overlay them</div>
</div>
CSS:
.parent{
width:300px;
max-width:300px;
}
.child{
width:100%;
min-width:100%;
position:relative;
}
.overlay{
position: /*?? to make it cover like overlay all the .child so all the .parent content*/
}
的jsfiddle:http://jsfiddle.net/ttUgM/1/
疊加層通常插在DOM的頂層,緊接着BODY(或所有內容之後)。 –
我不是在談論身體覆蓋,我在談論一個相對覆蓋(相對於它的元素),如果你喜歡 – sbaaaang