我有一个宽图像,我想在其底部绝对定位一个透明 div。
<div class="background">
<img src="background.jpg" class="image">
<div class="box">
<p>paragraph</p>
</div>
</div>
CSS:
.background {
Position: relative;
}
.image {
width: 100%;
display: block;
}
.box {
background: #CC333F;
color: white;
position: absolute;
bottom: 0;
}
问题是 .box 似乎显示为内联块,我希望它占据页面的所有可用宽度,但它在段落所在的位置结束。