码迷,mamicode.com
首页 > 其他好文 > 详细

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

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

标签:net   www   http   table   清除浮动   arp   boot   targe   浮动   

  

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清除浮动的两种写法

标签:net   www   http   table   清除浮动   arp   boot   targe   浮动   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!