顏色:
16進制的色彩值為六位數,如果每兩位的值相同,可以縮寫一半。
如:#000000=#000;
#223344=#234;
?
盒子的尺寸:
如margin:value;
一個值表示所有邊,兩個值表示上下,左右,三個值表示上,左右,下,四個表示上右下左。
border的width,style,color可以縮寫為border:1px solid red;
?
背景:
background-color\background-image\background-repeat\background-attachment\background-position可以縮寫到一起:
background:color image repeat attachment position;
可省略部分值,默認值為:transparent none repeat scroll 0% 0%
?
字體:
font-style\font-variant\font-weight\font-size\line-height\font-family可縮寫為:
font:italic small-caps bold 1em 140% sans-serif,"Lucida Grande";
?
list:
list-style-type\list-style-position\list-style-image\
縮寫:list-style:square inside urll(..\image.gif);
?