BFC 什么是BFC BFC是个简称,英文名是Block Formatting Content,中文名是 暴风城 块级格式上下文,他还有3个兄弟姐妹分别是IFC,FFC,GFC BFC是个概念,一个特定的环境,决定了元素如何定位,如何布局,规定了内部元素的行为和对外部元素的表现 哪里有/如何触发 根元素 <html> 浮动元素:float: left; / float: right; 绝对定位元素:position: absolute; / position: fixed; 行内块元素:display: inline-block; 弹性元素:display: flex; / display: inline-flex; 网格元素:display: grid; / display: inline-grid; 表格 表格单元格:display: table-cell; 表格标题:display: table-caption; 匿名表格单元格元素: display: table; html table的默认值 display: table-row; html row的默认值 d...... BFC小讲 CSS