当我为第一个图像设置边距顶部时,为什么第二个图像随之移动?

<img src="bgdesert.jpg"  style="margin-top: 18px;">
<img src="bgdesert.jpg" >

最佳答案

这是由于垂直对齐引起的,您可以将其更改为top以避免这种影响:

img {
 vertical-align:top;
}

<img src="https://lorempixel.com/200/200/"  style="margin-top: 18px;">
<img src="https://lorempixel.com/200/200/" >

关于html - 当我为第一个图像设置边距顶部时,为什么第二个图像随之移动?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47507100/

10-11 11:51