CSS CSS可折叠边距修复(margin-top)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CSS CSS可折叠边距修复(margin-top)相关的知识,希望对你有一定的参考价值。

#containerDiv {
width: 700px;
padding-top: 1px;/*important*/
margin-top: -1px;/*important*/
}
#innerDiv {
width: 200px;
margin: 20px 0 0;/*You can now apply a top margin without trouble*/
}

以上是关于CSS CSS可折叠边距修复(margin-top)的主要内容,如果未能解决你的问题,请参考以下文章

CSS 中的负边距如何工作,为啥是 (margin-top:-5 != margin-bottom:5)?

CSS边距折叠?

有没有办法让 CSS 边距通过字段集边界折叠?

CSS边距不折叠

margin折叠-从子元素margin-top影响父元素引出的问题

CSS 中引入边距折叠规则的原因是啥?