HTML DOM Input Color Object | DOM Color | HTML Input Color Tutorial By WDH

HTML DOM Input Color Object


Definition and Usage

The color property sets the color of the text.

Syntax

Object.style.color=color

Possible Values

Value Description
color-name
color-rgb
color-hex
Defines the color of the text

 


Example

The following example changes the color of a text:

<html>
<head>
<script type="text/javascript">
function setColor()
{
document.getElementById("p1").style.color="#ff0000";
document.getElementById("p2").style.color="magenta";
}
</script>
</head>
<body>
<p id="p1">This is an example paragraph</p>
<p id="p2">This is also an example paragraph</p>
<input type="button" onclick="setColor()"
value="Change color of text" />
</body>
</html>