解决margin-top导致的塌陷

什么是margin-top塌陷

若要使子元素距离父元素顶部有一定距离,如果只给子元素设置margin-top属性,结果发现父元素顶部出现位移,子元素相对父元素没位移,这就是margin-top导致的塌陷。

.fatherplus{
  width: 600px;
  height: 600px;
  border:1px solid #333;
  .father{
    width: 400px;
    height: 400px;
    background-color: #005CDD;
    .son{
      width: 200px;
      height: 200px;
      margin-top: 20px;
      background-color: skyblue;
    }
  }
}

"fatherplus">
"father">
"son">

解决margin-top导致的塌陷_第1张图片

解决方法

  1. 父元素 溢出隐藏

    overflow:hidden;
    
  2. 父元素 display设为table

    display:table;
    
  3. 父元素 变成行内块元素

    display:inline-block;
    
  4. 父元素 固定定位

    position: fixed;
    
  5. 父元素 绝对定位

    position:absolute;
    
  6. 父元素 添加透明border

    border:1px solid transparent;
    
  7. 父元素 设置padding

    padding:1px;
    
  8. 父元素 浮动

    float: left;
    
  9. 推荐写法 父元素 添加伪元素

     &::before{
       content:'';
       display:table;
     }
    

总结

推荐给父元素添加伪元素,因为其他写法都可能会影响页面布局。

最终效果

解决margin-top导致的塌陷_第2张图片

你可能感兴趣的:(CSS3,HTML5,css3,html5)