css缩写的主要规则如下:
颜色
16进制的色彩值,如果每两位的值相同,可以缩写一半,例如:
#000000可以缩写为#000;#336699可以缩写为#369.
字体(fonts)
字体的属性如下:
font-style: italic;
font-variant: small-caps;
font-weight: bold;
font-size: 1em;
line-height: 140%;
font-family: "Lucida Grande",sans-serif;
可以缩写为一句:font: italic small-caps bold 1em/140% "Lucida Grande",sans-serif;
即font: font-style | font-variant | font-weight | font-size | line-height | font-family;
注意,如果你缩写字体定义,至少要定义font-size和font-family两个值。
背景(Backgrounds)
背景...[ 查看全文 ]