CSS Property: text-decoration-color
Sets the color of the text decoration established by text-decoration-line
.
Possible Values
Value | Example |
---|---|
[color] | rgba(0,0,0,.4) |
inherit | |
initial | |
unset |
Example
a:hover {
text-decoration-line: line-through;
text-decoration-color: red;
}