# marginTop塌陷最好的处理方式

伪元素:

.clearfix {
  &::before {
    content: '';
    display:table;
  }
  &::after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: '';
    clear: both;
    height: 0;
  }
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14