13.1.2 CSS缩写属性
CSS中有些属性属于缩写属性,即允许使用一个属性设置多个属性值
例如,background属性是缩写属性,它可以一次设置background-color、background-image、background-repeat、background-attachment、background-position的属性值。
在缩写属性中如果有一些值被省略,那么被省略的属性就被赋予其初始值。
div{background-color:red;background-image:none;background-repeat:repeat;background-repeat:0% 0%;background-attachment:scroll;}
等价于
div{background:red;}
示例中background-image、background-repeat、background-attachment、background-position这四个属性设置的值都是其初始值,因此可以省略
其它CSS缩写属性
CSS font 属性,可以表示font-style、font-variant、font-weight、font-size、line-height、font-family
CSS list-style 属性,可以表示list-style-type、list-style-position、list-style-image
CSS border 属性,可以表示border-width、border-style、border-color