答案 0 :(得分:0)
你可以用绝对位置和z-index做很多事。
在下面的例子中,我使用绝对位置和百分比来保持响应性不变,并且我使用z-index重叠底部div。
点击整页进行测试。希望这会有所帮助。
.background {
position: relative;
width: 100%;
height: 400px;
background: yellow;
}
.image {
position: absolute;
height: 350px;
width: 30%;
background: blue;
left: 15%;
z-index: 1;
}
.imagetext {
position: absolute;
left: 50%;
}
.text {
position: absolute;
width: 80%;
height: 100px;
left: 10%;
bottom: 0;
background: grey;
}
<div class="background">
<div class="image"></div>
<div class="imagetext">Lorem ipsum dolor sit amet</div>
<div class="text">Lorem ipsum dolor sit amet</div>
</div>
答案 1 :(得分:-3)
为什么不将文本分成移动设备上的新行并将其放在图像下方?