我正在使用PlanetPress Connect,我正在尝试将文字放在图像上。我已经浏览了这里并尝试了一些例子,但它们没有用。我能得到的最接近的是:
这会将图像置于顶部,文本位于其下方。有人能帮我吗?
答案 0 :(得分:0)
两种方法,如果你知道你想要它,我会更详细地解释它
<div class="background">
you can put the image as background
</div>
<div class="test2">
<img src="http://lorempixel.com/400/200/cats">
<p>
or you do it this way
</p>
</div>
&#13;
.image h1 {
position: absolute;
z-index: 2;
top: 0;
left: 0;
}
&#13;
答案 1 :(得分:0)