码迷,mamicode.com
首页 > Web开发 > 详细

css清除浮动

时间:2017-09-04 16:30:19      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:ie6   color   content   pad   font   css   line   cti   clear   

清除浮动的方法:

方法一:给浮动元素的父亲元素添加属性:overflow: auto;

<style type="text/css">
*{padding:0;margin:0;}
.clearfix{
border: 3px solid green;
width: 200px;
overflow: auto;//这里是关键

zoom: 1;//可以支持IE6
}
.left{
width: 100px;
height: 100px;
float:left;
background: red;
}
.right{
width: 100px;
height: 100px;
float:left;
background: #000;
}

</style>
</head>
<body>
<section class="clearfix">
<div class="left"></div>
<div class="right"></div>
</section>

方法二:运用after伪类

<section class="clearfix">
  <div class="left"></div>
  <div class="right"></div>
</section>

.clearfix:after{

  content:".";

  display: block;

  clear: both;

  height: 0;

  line-height:0;

  font-size: 0;

  visibility: hidden;

}

.clearfix{

  zoom: 1;

}

 

css清除浮动

标签:ie6   color   content   pad   font   css   line   cti   clear   

原文地址:http://www.cnblogs.com/maomichaoren/p/7474138.html

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