backgroundcss
可在一个声明中设置background-color,background-image,background-repeat,background-attachment,background-position这些属性jquery
备注:chrome
1.兼容性良好。属性书写顺序貌似并没有要求,缺一个或多个不会出错,但根据官方定义最好采用background-color,background-image,background-repeat,background-attachment,background-position的顺序firefox
2.属性间加上空格,以避免在IE上出错it
background-positionio
备注:兼容性
1.background-position-x和background-position-y在firefox上不被支持,在IE,chrome上支持。im
为兼容firefox须要将此属性改写成 background-position:x y;兼容
在使用jquery设置时,须要写成$(...).css("background-position","3px; 3px");query