Home  >  Article  >  Web Front-end  >  Summary of CSS clear float methods

Summary of CSS clear float methods

高洛峰
高洛峰Original
2017-02-04 09:29:501165browse

Clear Floating

//IE浏览器
 
.clearfloat{
 zoom:1
}
//其他浏览器
.clearfloat ; after{
 display:bloak;
 clean:both;
 content:"";
 visibility: hidden;
 height:0
}

For more CSS clearing floating methods summary and related articles, please pay attention to the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:css3 content attributeNext article:css3 content attribute