CSS清除浮动方法二

方法二

在浮动元素的清标签的伪元素选择器:after中清除浮动 - 类似于空div

 <style>

        .box1 {width: 100px;height: 100px;background-color: #f00;float: left;}

        .box2 {width: 200px;height: 200px;

            background-color: #0f0;}

        .box:after {

            content: '';

            display: block;

            clear: both;

        }

        .box3 {width: 150px;height: 150px;background-color: hotpink;}

    </style>

    <div class="box">

        <div class="box1"></div>

        <div class="box3"></div>

    </div>

    <div class="box2"></div>

少见方法三:在受到浮动影响的元素前面,添加一个空div,给空div添加样式:clear:both

浮动:最早期做图文排版的,让块元素同行显示,html中块元素有自己排列规则,独占一行,浮动元素会脱离文档流,  一旦有浮动,就会产生问题,一定要清除浮动

上一篇:CSS入门


下一篇:Solution for the Square Root of x Using the Go Language