<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
.box {
width: 400px;
height: 300px;
border: 1px solid #000;
}
.box div {
width: 100px;
height: 100px;
float: right;
font-size: 50px;
line-height: 100px;
text-align: center;
color: aliceblue;
border: 1px solid #000;
}
.box1 {
background-color: #66ccff;
}
.box2 {
background-color: #0a0;
clear: both;
/*或者 clear:right*/
}
.box3 {
background-color: #f00;
}
</style>
</head>
<body>
<div class="box">
<div class="box1">1</div>
<div class="box2">2</div>
<div class="box3">3</div>
</div>
</body>
</html>