background-color
值爲顏色值或transparent
兩者選其一,默認值是transparent
(透明)。瀏覽器
background-image
指定顯示的背景圖片,用url()
設置路徑。url
background-repeat
指定背景圖像如何重複的,默認值是repeat
(一直重複,直到整個元素的背景被填充)spa
值 | 描述 |
---|---|
no-repeat | 不重複 |
repeat | 垂直和水平都重複 |
repeat-x | X軸方向(水平)重複 |
repeat-y | Y軸方向(垂直)重複 |
background-position
指定定位背景圖片的位置,原點爲左上角(0,0)。code
left
,center
,right
,top
,bottom
)center
background-position:9px top;
background-attachment
指定當內容滾動時背景如何滾動。圖片
值 | 描述 |
---|---|
scroll | 默認值。滾動,背景圖隨着頁面的滾動而移動。 |
fixed | 固定,當頁面的其他部分滾動時,背景圖像不會移動。 |