第三个盒子没有出现margin-top重叠问题,请问是修复了吗?
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style>
.father1,.father2,.father3{
float: left;
margin-right: 10px;
}
.son1{
margin-top: 80px;
background-color: burlywood;
}
.father2{
margin-top: 80px;
}
.son3{
margin-top: 80px;
}
.father3{
margin-top: 80px;
}
</style>
</head>
<body>
<div class="father1">
<div class="son1">我是son1</div>
</div>
<div class="father2">
<div class="son2">我是son2</div>
</div>
<div class="father3">
<div class="son3">我是son3</div>
</div>
</body>
</html>