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屬性的一些常用設置方法,可以根據需要進行組合使用。