例
设置不同元素的背景色:
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