📅  最后修改于: 2023-12-03 15:14:19.699000             🧑  作者: Mango
text-decoration-color属性是CSS3中的一项新属性,它用于设置文本装饰线的颜色。与text-decoration-line配合使用,可以设置文本装饰线的样式。
text-decoration-color: color|initial|inherit;
color
:设置文本装饰线的颜色,可以使用十六进制值、RGB值或者CSS颜色名称。initial
:将属性设置为默认值。inherit
:继承父元素的属性值。a {
text-decoration-line: underline;
text-decoration-color: #ff0000;
}
该示例将链接下划线的颜色设置为红色。