如何在一個聲明中設置全部背景屬性:css
body { : #00FF00 url(bgimage.gif) no-repeat fixed top; } background
親自試一試css3
IE | Firefox | Chrome | Safari | Opera |
---|---|---|---|---|
支持 | 支持 | 支持 | 支持 | 支持 |
全部瀏覽器都支持 background 屬性。瀏覽器
註釋:IE8 以及更早的瀏覽器不支持一個元素多個背景圖像。url
註釋:IE7 以及更早的瀏覽器不支持 "inherit"。IE8 須要 !DOCTYPE。IE9 支持 "inherit"。spa
background 簡寫屬性在一個聲明中設置全部的背景屬性。ssr
能夠設置以下屬性:code
若是不設置其中的某個值,也不會出問題,好比 background:#ff0000 url('smiley.gif'); 也是容許的。繼承
一般建議使用這個屬性,而不是分別使用單個屬性,由於這個屬性在較老的瀏覽器中可以獲得更好的支持,並且須要鍵入的字母也更少。教程
默認值: | not specified |
---|---|
繼承性: | no |
版本: | CSS1 + CSS3 |
JavaScript 語法: | object.style.background="white url(paper.gif) repeat-y" |
值 | 描述 | CSS |
---|---|---|
background-color | 規定要使用的背景顏色。 | 1 |
background-position | 規定背景圖像的位置。 | 1 |
background-size | 規定背景圖片的尺寸。 | 3 |
background-repeat | 規定如何重複背景圖像。 | 1 |
background-origin | 規定背景圖片的定位區域。 | 3 |
background-clip | 規定背景的繪製區域。 | 3 |
background-attachment | 規定背景圖像是否固定或者隨着頁面的其他部分滾動。 | 1 |
background-image | 規定要使用的背景圖像。 | 1 |
inherit | 規定應該從父元素繼承 background 屬性的設置。 | 1 |