CSS Property text-decoration-color








The text-decoration-color property sets the color for the text-decoration: underline, overline, linethrough.

Summary

Initial value
currentColor
Inherited
no
CSS Version
CSS3
JavaScript syntax
object.style.textDecorationColor="red"
Animatable
yes

CSS Syntax

text-decoration-color: color;

Property Values

color
the color of the text-decoration

Browser compatibility

text-decoration-color No No 6.0 -moz- No No




Example

<!DOCTYPE html>
<html>
<head>
<style>
p {<!-- ww  w . j  av a 2 s  .  c o  m-->
    text-decoration: underline;
    -moz-text-decoration-color: red; /* Code for Firefox */
    text-decoration-color: red;
}
</style>
</head>
<body>

    <p>this is a test!</p>

</body>
</html>

Click to view the demo