BFC

作者: 大菜鸟呀 | 来源:发表于2018-10-17 16:12 被阅读4次

触发BFC:
1、position:absolute
2、display:inline-block
3、float:left/right
4、overflow:hidden

兄弟结构间的margin-top 是重叠的

对于浮动元素,块级元素是看不到他的,
但是 触发了BFC的元素,文本元素(inline属性),文本 是可以看到的

clear:both清楚浮动 (必须加在块级元素上)

设置了 position:absolute/float:left 默认为display:inline-block

文字环绕图片:img加float:left

请浮动:display:block/clear:both/content:' '

相关文章

网友评论

      本文标题:BFC

      本文链接:https://www.haomeiwen.com/subject/rdjrzftx.html