## 背景(background)
background是最常用的简写之一,它包含以下属性:
1. background-color: color || #hex || RGB(% || 0-255) || RGBa;
2. background-image:url();
3. background-repeat: repeat || repeat-x || repeat-y || no-repeat;
4. background-position: X Y || (top||bottom||center) (left||right||center);
5. background-attachment: scroll || fixed;
background的简写可以大大的提高css的效率:
`background: #fff url(img.png) no-repeat 0 0;`
background的简写也有些默认值:
`background: transparent none repeat scroll top left;`
background属性的值不会继承,你可以只声明其中的一个,其它的值会被应用默认的。