目录

style color 属性

示例

设置不同元素的文本颜色:

document.getElementById("myH2").style.color = "#ff0000";
document.getElementById("myP").style.color = "magenta";
document.getElementById("myP2").style.color = "blue";
document.getElementById("myDiv").style.color = "lightblue";
亲自试一试 »

描述

color 属性设置或返回文本的颜色。


浏览器支持

Property
color Yes Yes Yes Yes Yes

语法

返回颜色属性:

object.style.color

设置颜色属性:

object.style.color = "color|initial|inherit"

属性值

Value Description
color Specifies the color of the text. Look at CSS Color Values for a complete list of possible color values
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit


技术细节

默认值: 未指定
返回值: 一个字符串,表示元素的文本颜色
CSS版本 CSS1

更多示例

示例

返回 <p> 元素的文本颜色:

alert(document.getElementById("myP").style.color);
亲自试一试 »

相关页面

CSS教程:CSS 文本

CSS 参考:颜色属性