CSS简写

border:1px solid red;

background:red url("img/1.gif") no-repeat fixed center;

顺序依次是:

background-color:背景颜色

background-image:背景图片

backgroud-repeat:背景重复(页面上对背景图像进行平铺) repeat-x, repeat-y

background-attachment: 背景关联:(默认文档滚动,图片也滚动)设置fix防止滚动。(fixed, scroll)

background-position:背景定位:

方式一:两个关键字,如top, left 如果省了一个,第二个默认为center.

方式二:百分百或者像素,表示水平方向(从左到右)、垂直方向(从上到下) (left, top)

原文地址:https://www.cnblogs.com/hemi/p/4015460.html