颜色:
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);