after伪类 和overflow清楚浮动

Posted floated

tags:

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

<style>
        .img{width:100px;height:100px;background:red;float:left;}
        .box:after{
            content:"";
            display:block;
            clear:both;
        }
    </style>
</head>
<body>
    <div class="box">
    <div class="img"></div>
    </div>
</body>

1、给父级添加after伪类,可以清楚浮动

2、给父级设置overflow:hidden可以清除浮动

以上是关于after伪类 和overflow清楚浮动的主要内容,如果未能解决你的问题,请参考以下文章

清除浮动以及:after元素

清除浮动

有关css伪类:after清除浮动的问题

使用 after 伪类清除浮动

10.1练习总结清除浮动搜索框div*3同行placeholder样式

清除浮动之父级div定义伪类:after和zoom