background

background-color 背景颜色

background-position 背景图像的位置

background-size 背景图片的尺寸

background-repeat 如何重复背景图像

background-origin 背景图片的定位区域

background-clip 背景的绘制区域

background-attachment 背景图像是否固定或者随着页面的其余部分滚动

background-image 背景图像

eg:属性在一个声明中   背景色、背景图像、是否重复、固定或随着移动、图像的位置

background: #ff0000 url(/i/eg_bg_03.gif) no-repeat fixed center; 

background-size: length|percentage|cover|contain;
学习链接:http://www.w3school.com.cn/cssref/pr_background-size.asp
原文地址:https://www.cnblogs.com/studyh5/p/9902565.html