解决margin塌陷和margin合并
1 <! doctype html > 2 < html > 3 4 < head > 5 < meta charset ="UTF-8" > 6 < title > 嘿嘿嘿 </ title > 7 < meta name ="viewport" content ="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no, minimal-ui, viewport-fit=cover" > 8 9 </ head > 10 < style type ="text/css" > 11 body { 12 background : #f5f5f5 ; 13 } 14 .father-box { 15 width : 150px ; 16 height : 150px ; 17 background-color : black ; 18 margin : 20px ; 19 } 20 .father-box .son-box { 21 width : 50px ; 22 height : 50px ; 23 background-color : greenyellow ; 24 margin : 20px ; 25 } 26 .brother-two { 27