首页 > Web开发 > 详细

css 三种清除浮动(float)的方法

时间:2018-08-23 15:06:01      阅读:151      评论:0      收藏:0      [点我收藏+]

方法一:添加新的元素 、应用 clear:both

.clear{
   clear:both; 
   height: 0; 
   height: 0; 
   overflow:hidden;
}

方法二:父级div定义 overflow: auto

.over-flow{
    overflow: auto; 
    zoom: 1; //处理兼容性问题
}

方法三: 伪类  :after 方法  outer是父div的样式

.outer {zoom:1;}    /*==for IE6/7 Maxthon2==*/
.outer :after {
   clear:both;
   content:‘.‘;
   display:block;
   width: 0;
   height: 0;
   visibility:hidden;
}

 

css 三种清除浮动(float)的方法

原文:https://www.cnblogs.com/jessiespur/p/9523490.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!