例
設置不同元素的背景色:
body
{
background-color: yellow;
}
h1
{
background-color: #00ff00;
}
p {
background-color: rgb(255,0,255);
}
試一試» 更多"Try it Yourself"下面的例子。
定義和用法
背景顏色屬性設置元素的背景色。
一個元素的背景是重要元素,包括填充和邊界的總大小(but not the margin)
Tip:使用的背景顏色和文本顏色,使文字易於閱讀。
默認值: | transparent |
---|---|
遺傳: | no |
動畫: | yes. Read about animatable Try it |
版: | CSS1 |
JavaScript語法: | object .style.backgroundColor="#00FF00" Try it |
瀏覽器支持
在表中的數字規定,完全支持該屬性的第一個瀏覽器版本。
屬性 | |||||
---|---|---|---|---|---|
background-color | 1.0 | 4 | 1.0 | 1.0 | 3.5 |
CSS語法
background-color:color|transparent|initial|inherit;
屬性值
值 | 描述 | 播放 |
---|---|---|
color | 指定背景顏色。 看看CSS顏色值可能的顏色值的完整列表。 | 播放 ” |
transparent | 指定背景顏色應該是透明的。 這是默認 | 播放 ” |
initial | 將此屬性設置為默認值。 閱讀關於初始 | 播放 ” |
inherit | 繼承其父元素此屬性。 閱讀關於繼承 |
更多示例
相關頁面
CSS教程: CSS背景
HTML DOM參考: backgroundColor property