常用背景相关属性:

background-repeat取值范围:

background-attachment取值范围:

background-position取值范围:

示例:
body {background-color: red;backgraound-image: url(xx.png);background-size: 300px 300px;background-repeat: no-repeat;background-position: center}
简写:
body {background: red url(xx.png) no-repeat fixed center/300px 300px;}
