Css清除浮动

.cf:after {
    content:"";
    clear: both;
    display:table;
}


.content{
  1020px;
  margin:0 auto;
  box-shadow:0 10px 30px rgba(0,0,0,0.3);
  background:#FFFFFF;
  border-radius:5px;
  border:1px solid #E53351;
}

.sub_colum{
  float:right;
  30%;

  height:300px;

}

section[role="main"]{
  float:left;
  67%;

  height:300px;
}

 
<div class="content cf">
  <section role="main" class="main"></section>
  <aside></aside>
</div>

 

.cf 样式可以清除内部的左右浮动,兼容IE6-8,FF和chrom;

 

下面这样只能IE6 7有效

.cf:after {
    clear: both;
}
原文地址:https://www.cnblogs.com/lufy/p/2506347.html