下面有更多 "亲自试一试" 示例。
backgroundColor 属性设置或返回元素的背景颜色。
返回背景颜色属性:
object.style.backgroundColor
设置背景颜色属性:
object.style.backgroundColor
= "color|transparent|initial|inherit"
Value | Description |
---|---|
color | Specifies the background color. Look at CSS Color Values for a complete list of possible color values |
transparent | Default. The background color is transparent (underlying content will shine through) |
initial | Sets this property to its default value. Read about initial |
inherit | Inherits this property from its parent element. Read about inherit |
默认值: | 透明的 |
---|---|
返回值: | 一个字符串,代表背景颜色 |
CSS版本 | CSS1 |
backgroundColor
是 CSS1 (1996) 的一项功能。
所有浏览器都完全支持它:
Chrome | Edge | Firefox | Safari | Opera | IE |
Yes | Yes | Yes | Yes | Yes | Yes |
设置特定 <div> 元素的背景颜色:
document.getElementById("myDiv").style.backgroundColor = "lightblue";
亲自试一试 »
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!