父子margin塌陷

1.使用padding

2.给父级使用border

3.给父级添加属性 overflow:hidden

4.浮动

5.定位{absolute,fixed}

6.伪元素代码

.parent:before{
                content: "";
                display: table;
            }
原文地址:https://www.cnblogs.com/tangdiying/p/10101246.html