CSS的background属性用于设置元素的背景样式,可以设置背景颜色、图片、重复方式等。
使用方法如下:
background-color: <颜色值>;
例如:background-color: red;
background-image: url(<图片路径>);
例如:background-image: url(“image.jpg”);
background-repeat: repeat|repeat-x|repeat-y|no-repeat;
例如:background-repeat: repeat; (默认值为repeat)
background-position: <水平位置> <垂直位置>;
例如:background-position: center top; (默认值为0% 0%)
background-size: auto|length|cover|contain;
例如:background-size: cover;
background-attachment: scroll|fixed;
例如:background-attachment: fixed;
以上是background属性的一些常用设置方法,可以根据需要进行组合使用。