首页 > 其他 > 详细

BFC

时间:2016-03-13 23:52:33      阅读:271      评论:0      收藏:0      [点我收藏+]

BFC( block formatting context)块级格式上下文

当发生下面的任一条时,就会触发BFC

  • the root element or something that contains it
  • floats (elements where float is not none)
  • absolutely positioned elements (elements where position is absolute or fixed)
  • inline-blocks (elements with display: inline-block)
  • table cells (elements with display: table-cell, which is the default for HTML table cells)
  • table captions (elements with display: table-caption, which is the default for HTML table captions)
  • elements where overflow has a value other than visible
  • flex boxes (elements with display: flex or inline-flex)

BFC

原文:http://www.cnblogs.com/oneplace/p/5274097.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!