<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可以清除浮动