我有 div 区域,它被分成 4 个相等的部分,就像附加的那个一样。
现在我需要将另一个 div 放置在底部区域作为上述 div 的覆盖。想象一下它就像电视底部的一个文本滚动区域,电视屏幕由 4 个 div 构成。
我能够创建 5 个 div。现在的问题是第 5 个 div(滚动区域)没有超出 2 个较低 div(3 和 4)的底部边缘。我也放了 z-index 但失败了
任何人都可以分享一个样式的样本。
我有 div 区域,它被分成 4 个相等的部分,就像附加的那个一样。
现在我需要将另一个 div 放置在底部区域作为上述 div 的覆盖。想象一下它就像电视底部的一个文本滚动区域,电视屏幕由 4 个 div 构成。
我能够创建 5 个 div。现在的问题是第 5 个 div(滚动区域)没有超出 2 个较低 div(3 和 4)的底部边缘。我也放了 z-index 但失败了
任何人都可以分享一个样式的样本。
你可以这样解决它:
HTML:
<div class="area"></div>
<div class="area"></div>
<div class="area"></div>
<div class="area"></div>
<div class="overlay"></div>
CSS:
.area{
float: left;
width: 49%;
height: 300px;
border: 1px solid black;
}
.overlay{
width: 200px;
height: 100px;
background-color: blue;
clear: both;
position: absolute;
bottom: 30px;
margin: -100px;
left: 50%;
}
请注意,我使用了硬编码的示例值。实际值取决于标记所在的上下文。
没有您的代码,很难弄清楚什么不起作用。如果我明白你想要什么,这就是我会做的:
<div class="container">
<div class="block1"></div>
<div class="block2"></div>
<div class="block3"></div>
<div class="block4"></div>
<div class="overlay"></div>
</div>
CSS:
.container {
position: relative;
width: 600px; /* use the size you want */
height: 400px;
}
.container div {
position: absolute;
width: 50%;
height: 50%;
}
.container .block1 { top: 0; left: 0; background: pink; }
.container .block2 { top: 50%; left: 0; background: red; }
.container .block3 { top: 0; left: 50%; background: green; }
.container .block4 { top: 50%; left: 50%; background: blue; }
.container .overlay {
position: absolute;
width: 80%;
height: 100px;
left: 10%;
bottom: 30px; /* distance from the bottom */
z-index: 1;
background: yellow;
}