```css
background-color: #xxx; /* 設(shè)置背景色為xxx */
background-color: #xxx; /* 設(shè)置背景色為xxx */
background-color: #xxx; /* 設(shè)置背景色為xxx */
```css
```css
background-size: cover; /* 設(shè)置背景圖片鋪滿整個(gè)屏幕 */
background-size: 100% 100%; /* 設(shè)置背景圖片寬度和高度均為100% */
使用 background-repeat 屬性可以重復(fù)背景圖片。這個(gè)屬性可以設(shè)置背景圖片的多少次。例如:
```css
background-repeat: no-repeat; /* 設(shè)置背景圖片不重復(fù) */
background-repeat: repeat-x; /* 設(shè)置背景圖片在水平和垂直方向上重復(fù) */
background-repeat: repeat-y; /* 設(shè)置背景圖片在垂直方向上重復(fù) */