```
置背景颜色
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;;
```