可以有两种方法:
1.添加overflow:hidden;
2.添加伪元素
<style>
.wrap{
border:1px solid blue;
width:600px;
margin:0 auto;
padding:20px 0;
}
.main{
float:left;
background:pink;
width:350px;
height:100px;
}
.side{
float:left;
background:rosybrown;
width:200px;
height:100px;
}
.wrap:after{
content:‘‘;
display:block;
height:0;
clear:both;
}
</style>
<div class="wrap">
<div class="main"></div>
<div class="side"></div>
</div>
时间: 2024-10-12 16:25:19