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