C:即块级格式化上下文

一、BFC的特点:

二、如何触发BFC

  • 1.float值不为none
  • 2.position不是static或relative
  • 3.display是table相关的
  • 4.overflow不是visible

三、BFC的使用场景

1.解决margin重叠问题

2.清除浮动

参考资料 http://www.html-js.com/article/1866

https://github.com/chokcoco/iCSS/issues/5