CSS 属性:text-decoration-color
设置由 text-decoration-line 定义的文本装饰的颜色。
可能的值
| 值 | 示例 |
|---|---|
| [颜色] | rgba(0,0,0,.4) |
inherit | |
initial | |
unset | |
示例
a:hover {
text-decoration-line: line-through;
text-decoration-color: red;
}
text-decoration-color设置由 text-decoration-line 定义的文本装饰的颜色。
| 值 | 示例 |
|---|---|
| [颜色] | rgba(0,0,0,.4) |
inherit | |
initial | |
unset | |
a:hover {
text-decoration-line: line-through;
text-decoration-color: red;
}