最新的Web開發教程
 

Style backgroundColor Property

<Style對象

設置文檔的背景色:

document.body.style.backgroundColor = "red";
試一試»

更多"Try it Yourself"下面的例子。


定義和用法

backgroundColor屬性集或返回元素的背景顏色。


瀏覽器支持

在表中的數字規定,完全支持該財產瀏覽器版本。

屬性
backgroundColor 1.0 4 1.0 1.0 3.5

句法

返回backgroundColor屬性:

object .style.backgroundColor

設置backgroundColor屬性:

object .style.backgroundColor=" 屬性值
描述
color 指定背景顏色。 看看CSS顏色值可能的顏色值的完整列表
transparent 默認。 背景顏色由透明(underlying content will shine through)
initial 將此屬性設置為默認值。 閱讀關於初始
inherit 繼承其父元素此屬性。 閱讀關於繼承

技術細節

默認值: 透明
返回值: 一個字符串,表示背景顏色
CSS版本 CSS1

更多示例

設置的特定的背景顏色<div>元素:

document.getElementById("myDiv").style.backgroundColor = "lightblue";
試一試»

返回一個特定的背景顏色<div>元素:

alert(document.getElementById("myDiv").style.backgroundColor);
試一試»

返回文檔的背景色:

alert(document.body.style.backgroundColor);
試一試»

相關頁面

CSS教程: CSS背景

CSS參考: background-color property

HTML DOM參考: background property


<Style對象