CSS常用的background背景屬性

  1. 背景顏色background-color: #f5f5f5; (比背景圖更底層)
  2. 背景位置background-position: 水平(left, center ,right) 垂直(top, center,bottom) 或 x% y% 或 x位置 y 位置
  3. 背景尺寸background-size:cover(把圖填滿到顯示區),contain(把圖縮小到顯示區內)
  4. 重複方式background-repeat: repeat(重複), repeat-x(水平重複), repeat-y(垂直重複), no-repeat(不重複)
  5. 背景附著background-attachment: scroll(捲動), fixed(固定), inherit(繼承)
  6. 背景圖background-image:url(圖檔位置)
  7. 集合型寫法background: color position size repeat origin clip attachment image;