backgroundbackground-colorbackground-attachmentbackground-imagebackground-positionbackground-position-xbackground-position-ybackground-repeat设置背景色(譬如红色): background-color: red; 或者 background: red;
![26153413_1W9d.png](http://static.oschina.net/uploads/img/201409/26153413_1W9d.png)
背景图片: background-image: url(路径); 或者 background: url(路径); 其中的路径可以是相对或绝对路径, 可以带双引号或单引号.
![26153413_wCOK.png](http://static.oschina.net/uploads/img/201409/26153413_wCOK.png)
background-repeat(背景图片反复方式): repeat(默认)、no-repeat、repeat-x、repeat-y.
![26153413_JLjx.png](http://static.oschina.net/uploads/img/201409/26153413_JLjx.png)
![26153413_beTr.png](http://static.oschina.net/uploads/img/201409/26153413_beTr.png)
![26153413_n0rJ.png](http://static.oschina.net/uploads/img/201409/26153413_n0rJ.png)
![26153413_aYD6.png](http://static.oschina.net/uploads/img/201409/26153413_aYD6.png)
background-position(背景图起始位置):
上中: top 或者 top center上左: top left(默认)上右: top right中心: center 或者 center center中左: left 或者 center left中右: right 或者center right下中: bottom 或者 bottom center下左: bottom left下右: bottom right还可以用百分比或具体的数值描述: x% y% 或 xpos ypos
![26153413_uwSS.png](http://static.oschina.net/uploads/img/201409/26153413_uwSS.png)
![26153413_vm3t.png](http://static.oschina.net/uploads/img/201409/26153413_vm3t.png)
![26153413_BYaw.png](http://static.oschina.net/uploads/img/201409/26153413_BYaw.png)
![26153413_tNLO.png](http://static.oschina.net/uploads/img/201409/26153413_tNLO.png)
![26153413_ehLV.png](http://static.oschina.net/uploads/img/201409/26153413_ehLV.png)
![26153413_5W5z.png](http://static.oschina.net/uploads/img/201409/26153413_5W5z.png)
![26153413_QZNx.png](http://static.oschina.net/uploads/img/201409/26153413_QZNx.png)
![26153413_I1Ym.png](http://static.oschina.net/uploads/img/201409/26153413_I1Ym.png)
![26153413_7u8M.png](http://static.oschina.net/uploads/img/201409/26153413_7u8M.png)
![26153413_GKQa.png](http://static.oschina.net/uploads/img/201409/26153413_GKQa.png)
![26153414_sREm.png](http://static.oschina.net/uploads/img/201409/26153414_sREm.png)
background-position 本来就是有 x、y 两个值构成的, 也可用 background-position-x 和 background-position-y 单独设定. background-attachment(设置背景是否随滚动条滚动): scroll(默认)、fixed(不滚动).
![26153414_YmJs.gif](http://static.oschina.net/uploads/img/201409/26153414_YmJs.gif)
用 background 可以同时设置: background-color、background-attachment、background-image、background-position、background-repeat 竟没有顺序的要求, 也可随意省略, 只是 position 用两个值时不要分开即可.
![26153414_QFNy.png](http://static.oschina.net/uploads/img/201409/26153414_QFNy.png)