清除浮动的方法?

Posted hyting

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了清除浮动的方法?相关的知识,希望对你有一定的参考价值。

(1)给父级元素单独定义高度(height)

(2)在标签结尾处加空div标签 clear:both

.clear{clear: both;}

<div class="box">

       <div class="red">1</div>
       <div class="sienna">2</div>
       <div class="blue">3</div>
       <div class="clear"></div>
 </div>

(3)父级div定义 overflow:hidden

使用伪元素来清除浮动(:after,注意:作用于浮动元素的父亲)

主要推荐使用这种方法清除浮动

.clearfix:after{
          content:"";/*设置内容为空*/
          height:0;/*高度为0*/
          line-height:0;/*行高为0*/
          display:block;/*将文本转为块级元素*/
          visibility:hidden;/*将元素隐藏*/
          clear:both;/*清除浮动*/
      }
     .clearfix{
          zoom:1;/*为了兼容IE*/
     }

 <body>

<div class="box clearfix">
    <div class="red">1</div>
    <div class="sienna">2</div>
    <div class="blue">3</div>
</div>

 </body>

(4)使用双伪元素清除浮动

.clearfix:before,.clearfix:after {
     content: "";
     display: block;
     clear: both;
}
.clearfix {
     zoom: 1;
 }

以上是关于清除浮动的方法?的主要内容,如果未能解决你的问题,请参考以下文章

清除浮动的几种方法

CSS--清除浮动方法详解

css的浮动以及如何清除浮动

清除浮动的四种方式及其原理理解

清除浮动(闭合浮动)的方法

浮动及清除浮动的方法