margin 屬性是css用於在一個聲明中設置全部 margin 屬性的簡寫屬性,margin是css控制塊級元素之間的距離, 它們之間是透明不可見的。css
margin屬性包含了margin left :距左元素塊距離(設置距左內邊距) ;margin top:距頭頂(上)元素塊距離(設置距頂部元素塊距離);margin right :距右元素塊距離(設置距右元素塊距) ;margin bottom :底元素塊距離(設置距低(下)元素塊距)。其二維構建圖可見CSS屬性二維圖。html
margin left用法:margin-left:10px; 這個意思距離左元素塊距10像素,可跟百分好比(margin-left:10%; 距離左元素塊10%的距離)css margin-left教程;
margin right用法:margin-right:10px; 這個意思距離右邊元素塊距10像素,可跟百分好比(margin-right:10%; 距離右邊元素塊10%的距離);
margin top用法:margin-top:10px; 這個意思距離頂邊元素塊距10像素,可跟百分好比(margin-top:10%; 距離頂邊元素塊10%的距離)css margin-top;
margin bottom用法:margin-bottom:10px; 這個意思距離低邊元素塊距10像素,可跟百分好比(margin-bottom:10%; 距離底邊元素塊10%的距離)css margin-bottom;
注意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; 的轉法爲順時針即圖:網站