HTML DOM color Property
Complete Style Object Reference
Definition and Usage
The color property sets the color of the text.
Syntax
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>
|
Try-It-Yourself Demos
color -
Change the color of the text
Complete Style Object Reference
|
|
|
See why there are 20,000+ Ektron integrations worldwide.
Request an INSTANT DEMO or download a FREE TRIAL today. |
|
|
|