垂直bfc - 使用auto

height:auto; 无边框

.parent1 {
height: auto;
}
.child1 {
margin-top: 20px;
margin-bottom: 20px;
}

包含块无边框

height:auto; 有边框

.parent2 {
height: auto;
border: 1px solid;
}
.child2 {
margin-top: 20px;
margin-bottom: 20px;
}

包含块有边框