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

Posted 老松壳

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CSS3中三种清除浮动(float)的方法相关的知识,希望对你有一定的参考价值。

方法一:添加新的元素 、应用 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;
}

 

以上是关于CSS3中三种清除浮动(float)的方法的主要内容,如果未能解决你的问题,请参考以下文章

css清除浮动float的三种方法总结,为什么清浮动?浮动会有那些影响?一起来$('.float')

ss清除浮动float的三种方法总结,为什么清浮动?浮动会有那些影响?

清除浮动的三种方法

清除浮动的三种方法

0023 浮动:float清除浮动

父元素div清除浮动的三种方式