万能清除浮动法

html body div.clear,
html body span.clear
{
     background: none;
     border: 0;
     clear: both;
     display: block;
     float: none;
     font-size: 0;
     margin: 0;
     padding: 0;
     overflow: hidden;
     visibility: hidden;
     width: 0;
     height: 0;
}
 
复制代码

 

还有一种是

    content: "";
      display: block;
    height: 0;
    clear: both;
   visibility:hidden;
   overflow:hidden;
  
} .clearfix { zoom: 1; }
posted @ 2017-04-01 16:00  16°深蓝梦境  阅读(261)  评论(0)    收藏  举报