10個CSS簡寫/優化技巧
一、盒子大小
這裡主要用於兩個屬性:margin和padding,我們以margin為例,padding與之相同。盒子有上下左右四個方向,每個方向都有個外邊距:
1 2 3 4 |
margin-top
:
1px
;
margin-right
: 2px
;
margin-bottom
:
3px
;
margin-left
:
4px
;
|
你可以簡寫成:
1 |
margin
:
1px
2px 3px
4px
;
|
語法 margin:top right bottom left;
1 2 3 4 5 6 7 8 |
//四個方向的邊距相同,等同於 margin
:
1px
1px
1px
1px
;
margin
:
1px
;
//上下邊距都為
1px
,左右邊距均為
2px
,等同於
margin
:
1px
2px
1px
2px
;
margin
:
1px
2px
;
//右邊距和左邊距相同,等同於
margin
:
1px
2px
3px
2px
;
margin
:
1px
2px
3px
;
//注意,這裡雖然上下邊距都為
1px
|