清除浮动之父级div定义伪类:after和zoom

Posted xxyssm

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了清除浮动之父级div定义伪类:after和zoom相关的知识,希望对你有一定的参考价值。

这是比较常用的一种清除浮动的方法,各大网站都在采用:

<!Doctype html>
<html>
<head></head>
<body>
<style type="text/css"> 
   .div1{background:#333;border:1px solid red;}
   .div2{background:#888;border:1px solid red;height:100px;margin-top:10px}
   
   .left{float:left;width:20%;height:200px;background:#fff}
   .right{float:right;width:30%;height:80px;background:#fff}
   
   /*清除浮动代码*/
   .clearfloat:after{display:block;clear:both;content:"";visibility:hidden;height:0}
   .clearfloat{zoom:1}
   </style> 
<div class="div1 clearfloat"> 
<div class="left">Left</div> 
<div class="right">Right</div> 
</div>
<div class="div2">
   div2
   </div>
</body>
</html>

 

以上是关于清除浮动之父级div定义伪类:after和zoom的主要内容,如果未能解决你的问题,请参考以下文章

清除浮动的方法

清除浮动的方式

使用after伪类,配合IE的zoom或者overflow清除浮动

有关css伪类:after清除浮动的问题

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

10.1练习总结清除浮动搜索框div*3同行placeholder样式