1. margin對佈局的影響 雙飛翼佈局聖盃佈局()佈局
Margin是外邊距,屬性值是數字數字又分正負。spa
正數:margin:20px;blog
負數:在static元素中(標準流下)margin-left爲負數當前元素向左走 margin-top爲負當前元素向上走it
Margin-bottom爲負數後當前元素不動後面的元素向上走,margin-right爲負數當前元素不動後面的元素向左走io
注意的,margin爲負會增大當前元素的寬(前提是當前元素沒有設置width)float
場景自適應
給ul一個margin-right 就無形之中給ul加了20px寬度。im
在float下margin
Margin爲負也是咱們經常使用的雙飛翼,聖盃佈局static
中間自適應兩端固定
給元素margin-left爲負當前元素向左走,margin-right爲負後一個元素向左走會覆蓋當前元素。
在absolute下
Margin爲負
讓元素居中,前提是知道元素的寬高。
div{
Position:absolute;
Left:50%;
Top:50%;
Margin-left:-width/2;
Margin-top:-height/2
}
Margin爲負不管在什麼條件下都是釋放本身的空間,若是本身的margin不夠,就把本身的寬高貢獻出去