时间:2021-07-01 10:21:17 帮助过:11人阅读
具体表述为:先建立两个div1和div2
div2设置成margin-top,div1设置margin-bottom,代码如下:
.div1{ width: 200px;height: 200px; background: green; margin-bottom: 50px; } .div2{ width: 200px;height: 200px; background: blue; margin-top: 80px; }
设置背景色和宽高,是为了方便比对观察
那么两者之间的间隙会变成margin-top和margin-bottom比较出来的最大值.
如果真想要间隙进行相加,则应把div2元素变为inline-block,代码如下:
.div2{ width: 200px;height: 200px; background: blue; margin-top: 80px; display:inline-block; }
将div2转换为内联块属性后,两者之间的间隙就能正常相加而正确显示了.