示例:
/* 设置链接文本的下划线颜色为红色 */
a {
text-decoration: underline;
text-decoration-color: red;
}
/* 设置删除线的颜色为蓝色 */
.strikethrough-text {
text-decoration: line-through;
text-decoration-color: blue;
}
在上述示例中,text-decoration-color 用于指定文本装饰效果的颜色。这样,你可以在文本装饰效果和文本本身的颜色之间进行区分。
需要注意的是,text-decoration-color 在某些浏览器中可能不被完全支持,特别是在一些旧版本的浏览器中。因此,在使用时最好进行兼容性测试。
转载请注明出处:http://www.zyzy.cn/article/detail/4246/CSS