clear:both
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.clearFix::after{
content: '';
display: block;
clear: both;
}
.box1{
width: 200px;
border: 1px solid lightcoral;
}
.box2{
width: 100px;
height: 100px;
background-color: blue;
float: left;
}
</style>
</head>
<body>
<div class="box1 clearFix">
<div class="box2"></div>
</div>
</body>
</html>
这里的.clearFix::after{
content: '';
display: block;
clear: both;
}起到的作用是在有浮动属性的元素后添加一个空的块级元素,这样就可以将父元素的高度给撑起来了。clear:both就是将这个伪元素形成的块级元素移动到浮动元素的下面。由于这个伪元素又是属于.box1内的,所以父元素就被撑开了。
努力学习,天天向上,向阳而生的可爱小北鼻。