margin 屬性是css用於在一個聲明中設置所有 margin 屬性的簡寫屬性,margin是css控制塊級元素之間的距離, 它們之間是透明不可見的。
margin屬性包含了margin left :距左元素塊距離(設置距左內邊距) ;margin top:距頭頂(上)元素塊距離(設置距頂部元素塊距離);margin right :距右元素塊距離(設置距右元素塊距) ;margin bottom :底元素塊距離(設置距低(下)元素塊距)。
margin left用法:margin-left:10px; 這個意思距離左元素塊距10像素,可跟百分比如(margin-left:10%; 距離左元素塊10%的距離);
margin right用法:margin-right:10px; 這個意思距離右邊元素塊距10像素,可跟百分比如(margin-right:10%; 距離右邊元素塊10%的距離);
margin top用法:margin-top:10px; 這個意思距離頂邊元素塊距10像素,可跟百分比如(margin-top:10%; 距離頂邊元素塊10%的距離);
margin bottom用法:margin-bottom:10px; 這個意思距離低邊元素塊距10像素,可跟百分比如(margin-bottom:10%; 距離底邊元素塊10%的距離);
注意margin中間的鏈接“ - ”號,設置距離值時用“ : ”並賦予值,並以“ ; ”結束,並且全部用小寫半角字母。
如果是左右上下都需要設置margin的值時可以簡寫來實現,以優化css 。
如簡寫方式有:
margin:10px; 意思就是上下左右元素塊距離就是10px(10像素)等於margin-top:10px; margin-bottom:10px; margin-left:10px; margin-right:10px; 一樣效果簡寫;
margin:5px 10px; 意思上下元素塊距離為5px,左右的元素塊距離為10px,等於margin-top:5px; margin-bottom:5px; margin-left:10px; margin-right:10px; 一樣效果簡寫;
margin:5px 6px 7px; 意思上元素塊距離5px,下元素塊距離為7PX,左右元素塊距離為6px,等於margin-top:5px; margin-bottom:7px; margin-left:6px; margin-right:6px; 一樣效果簡寫;
margin:5px 6px 7px 8px; 意思上元素塊為5px,右元素塊距離為6px ,下元素塊距離為7px,左元素塊距離8px,等於等於margin-top:5px; margin-right:6px; margin-bottom:7px; margin-right:8px; 一樣效果簡寫;
其中margin:5px 6px 7px 8px; 的轉法為順時針
上面即是div css網站總結的margin的屬性與用法。其中margin的用與padding相同。