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清楚浮动的主要内容,如果未能解决你的问题,请参考以下文章