css清除浮动的几种方法和示例_ Div+Css教程-查字典教程网
css清除浮动的几种方法和示例
css清除浮动的几种方法和示例
发布时间:2016-12-27 来源:查字典编辑
摘要:1、【.clr{clear:both;}】,设置了clear属性的元素,其上边框会紧贴着浮动元素的margin-bottom边界位置渲染,忽...

1、【.clr{clear:both;}】,设置了clear属性的元素,其上边框会紧贴着浮动元素的margin-bottom边界位置渲染,忽略其margin-top设置。

.divcss5{ width:400px;border:1px solid #F00;background:#FF0}

.divcss5-left,.divcss5-right{width:180px;height:100px;

border:1px solid #00F;background:#FFF}

.divcss5-left{ float:left}

.divcss5-right{ float:right}

.clear{ clear:both}

2、空标签清浮动:【.clr{clear:both;height:0;overflow:hidden;}】,不推荐。

3、伪类after清浮动:【.clr:after{content:" ";clear:both;display:block;height:0;visibility:hidden;line-height:0;} .clr{zoom:1}】。

4、使用【display:table】。

5、使用overflow除visible,类似于激发haslayout。

6、使用浮动父元素清浮动。

.divcss5{ width:400px;border:1px solid #F00;background:#FF0; overflow:hidden}

.divcss5-left,.divcss5-right{width:180px;height:100px;

border:1px solid #00F;background:#FFF}

.divcss5-left{ float:left}

.divcss5-right{ float:right}

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新 Div+Css教程学习
    热门 Div+Css教程学习
    网页设计子分类