<div style="clear: both"></div>
属性值 | 含义 |
---|---|
left | 不允许左侧有浮动元素(清除左侧浮动的影响) |
right | 不允许右侧有浮动元素(清除右侧浮动的影响) |
both | 同时清除左右两侧浮动的影响 |
overflow: hidden;
.clearfix:after {
content : "";
display: block;
height: 0;
clear : both;
visibility: hidden;
}
.clearfix {
/*IE6、7专有*/
*zoom: 1;
}
.clearfix:before,
.clearfix:after {
content: "";
display: table;
}
.clearfix:after {
clear: both;
}
.clearfix {
*zoom: 1;
}