这是我的意思的一个例子:
img {
width: 400px;
height: 100px;
top: -50px;
position: relative;
}
<img src="http://www.flabber.nl/sites/default/files/archive/files/i-should-buy-a-boat.jpg">
<p>
testing to see when it will work
</p>
文本应该在图像的正下方,但我仍然想要移动图像/ div。
我还想在没有top / translate的情况下移动文本,因为我将不得不移动所有文本/ div /图像。
答案 0 :(得分:1)
答案 1 :(得分:0)
默认情况下<p>
标记有一个边距,您只需删除边距。
试试这个:
img {
width: 400px;
height: 100px;
margin: 0;
}
p {
margin: 0;
padding: 0;
}