浮动副作用介绍:
<div style="width: 250px; background: blue;">
<div style="width: 50px; height: 50px; background: red; display: inline-block; float: left;"></div>
<div style="width: 50px; height: 50px; background: red; display: inline-block; float: left;"></div>
<div style="width: 50px; height: 50px; background: red; display: inline-block; float: left;"></div>
<div style="width: 50px; height: 50px; background: red; display: inline-block; float: left;"></div>
</div>
上面是带有浮动效果的代码。行内块元素使用浮动消除了水平间隙,所以行内块元素总长度200px,高度都是50px。父元素宽度250px,高度由子元素决定,为50px。预计效果和实际效果分别如下图:
这种情况的原因是浮动元素脱离文档流(但不脱离文本流),宽度和高度将不会对其它元素造成影响,因此上述示例父元素高度不会受子元素影响,父元素最后的实际尺寸是250×0
消除浮动的方法:
- 在非浮动元素上使用clear属性
- clear属性通常取值为both或right或left
- clear属性通常设置在子元素中,情景是一个父元素作为容器,里面若干子元素中存在浮动的子元素
- clear属性的取值含义是,在物理位置上,当前元素在左边或右边或左右两边都不允许有浮动元素,可以参考<<精通CSS>>里面有介绍具体计算过程
- clear属性的效果,会把浮动元素顶到父元素的顶部
<div style="width: 250px; background: blue;">
<div style="width: 50px; height: 50px; background: red; display: inline-block; float: left;"></div>
<div style="width: 50px; height: 50px; background: red; display: inline-block; float: left;"></div>
<div style="width: 50px; height: 50px; background: red; display: inline-block; float: left;"></div>
<div style="width: 50px; height: 50px; background: red; display: inline-block; float: left;"></div>
<div style="clear: left;"></div>
</div>
可以用JavaScript动态插入,可以直接如上设置一个非浮动元素,也可以使用伪元素
- 在浮动元素的父元素上开启BFC
在父元素内部开启BFC的方法有:
- 父元素的overflow属性不是visible,通常设置为auto
- 父元素的float属性不是none
- 父元素的position属性不是relative和static
- 父元素的display为inline-block或table-cell或table-caption
举例而言,就拿第一个方案说明
<div style="width: 250px; background: blue; overflow: auto;">
<div style="width: 50px; height: 50px; background: red; display: inline-block; float: left;"></div>
<div style="width: 50px; height: 50px; background: red; display: inline-block; float: left;"></div>
<div style="width: 50px; height: 50px; background: red; display: inline-block; float: left;"></div>
<div style="width: 50px; height: 50px; background: red; display: inline-block; float: left;"></div>
</div>