首页 > 其他 > 详细

clear-fix清除浮动的两种写法

时间:2017-03-31 13:00:33      阅读:231      评论:0      收藏:0      [点我收藏+]

  

1. [代码]clearfix 清除浮动     
.clearfix:after {
content: ".";
display: block;
height: 0;
font-size: 0;
clear: both;
visibility: hidden;
}
 
.clearfix {
zoom: 1;
}
2. [代码]clearfix的另一种写法     

.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
  
.clearfix {
    display: inline-block;
}
  
html[xmlns] .clearfix {
    display: block;
}
  
* html .clearfix {
    height: 1%;
}

3.贴上bootstrap里面的clearfix的写法
.clearfix {
  zoom: 1;
}
.clearfix:before,.clearfix:after {
  display: table;
  line-height: 0;
  content: "";
}
.clearfix:after {
 clear: both;
}

  

 

 

clear-fix清除浮动的两种写法

原文:http://www.cnblogs.com/937522zy/p/6650708.html

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