<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.container{
overflow: hidden;
}
.box{
width: 70%;
height: 200px;
background-color: red;
/*margin-bottom: 20px;*/
/*此处的margin有用*/
float: left;
}
.box1{
width: 100px;
height: 200px;
background: aqua;
margin-top: 20px;
/*此处的margin不起作用*/
clear: right;
}
</style>
</head>
<body>
<div class="container">
<div class="box">
</div>
<div class="box1">
</div>
</div>
</body>
</html>
参考资料:https://segmentfault.com/q/1010000003114546