css中如何清除浮动: clear:both和BFC
clear:both
这种方式有两种做法
做法1
one
效果图
做法2
做法1 添加了多余的元素'.to-clear' , 为了尽量不使用多余元素, 做法2使用伪元素元素
one
效果图
BFC
给 parent 添加 overflow:hidden 形成BFC 这样 不会影响parent下面的元素
one