码迷,mamicode.com
首页 > 其他好文 > 详细

BFC

时间:2016-03-13 23:53:51      阅读:187      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!