为什么#box2{margin-bottom:30px;}不能分离2个box?
因为margin是指两个盒子之间的间距,“#box2{margin-bottom:30px;}”:是表示box2的下边界与下一个盒子(该盒子不存在)之间的距离,所以不显示
#box2{margin-top:30px;} 就可以,margin-bottom是指下方的外边距