大綱 顏色 color 背景顏色 background-color 顏色的設定種類 直接指定顏色名稱 ex: color:red; rgb值(紅, 綠, 藍) ex:rgb(255, 255, 255) hex碼:以16進位表示紅, 綠, 藍 ex:#ffffff 背景進階設定 背景顏色 <style> body{ background-color: pink; } </style> 背景圖片 background-image:url("圖片位置") 背景重複 background-repeat: repeat|repeat-x|repeat-y|no-repeat 重複方式 橫向重複:repeat-x 直向重複:repeat-y 無限重複:repeat 不重複:no-repeat ...