<!DOCTYPE html>
<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>
.parent{
border: 10px solid red;
margin-top: 10px;
}
.child{
width: 100px;
height: 100px;
background-color: blue;
float: left;
}
.clear{
clear: both;
}
.parent:nth-child(2)::after{
content: "";
display: block;
clear: both;
}
</style>
</head>
<body>
<div class="parent">hello css</div>
<div class="parent">
<div class="child">1</div>
<div class="child">2</div>
<div class="child">3</div>
<div class="child">4</div>
</div>
<div class="clear"></div>
<div class="parent">hello css</div>
</body>
</html>