~~~
設置背景顏色
background-color:
設置背景圖片
background-image: url("img/icon1.png");
設置背景重復
background-repeat: repeat-x|repeat-y|no-repeat
設置背景位置
background-position-x: 10px;
background-position-y: 50px;
-----------------------------------------
background-position: center center;
可以一段代碼全部設置
background: red url("img/icon1.png") no-repeat center center;
設置背景大小
background-size: 25px 25px;;
~~~