在图像后面写文字,保持一切响应

时间:2017-11-15 10:13:14

标签: html css layout

这是我在网站上通过HTML / CSS尝试实现的目标:

enter image description here

我想在笔记本电脑屏幕上添加一个 div 的图片,但我正努力防止它与图片重叠,以便我在图片时正确调整屏幕大小。如何保持这种结构的响应?

2 个答案:

答案 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)

为什么不将文本分成移动设备上的新行并将其放在图像下方?