概念瀏覽器
所謂盒子模型,就像一個盒子,一個標籤就是一個盒子,能夠經過6大屬性( 有margin(外邊距),border(邊框),padding(內邊距),widht(寬度),height(高度),background(背景))來設置這個盒子。spa
<style>
.father{
width: 960px;
height: 100px;
background: red;
}
.son{
background: yellow;
height: 50px;
}
</style>
<body>
<div class="father">
<div class="son">
</div>
</div>
</body>
複製代碼
重疊前提:塊級元素 垂直3d
兄弟元素之間的重疊:code
解決: 塊級元素-->非塊級元素 浮動 設置一方盒子margin,不要兩個都設置cdn
父子(第1個子或最後1個子)元素之間的重疊:blog
父的margin-top 和 子的margin-top ---> 取大優先it
父的margin-bottom 和 子的margin-bottom ---> 取大優先io
解決: 男-->非男 border paddingclass