背景缩写属性可以在一个声明中设置所有的背景属性。如:
background: rgba(0,0,0,0) url(../img/login_bg.jpg) no-repeat fixed center/cover;
可以设置的属性分别是:background-color, background-position, background-size, background-repeat, background-origin, background-clip, background-attachment,和background-image.
值说明CSSbackground-color指定要使用的背景颜色1background-position指定背景图像的位置1background-size指定背景图片的大小3background-repeat指定如何重复背景图像1background-origin指定背景图像的定位区域3background-clip指定背景图像的绘画区域3background-attachment设置背景图像是否固定或者随着页面的其余部分滚动。1background-image指定要使用的一个或多个背景图像1
菜鸟教程的 background 介绍:https://www.runoob.com/css/css-background.html