小码哥的IT人生

CSS text-decoration-color 属性 详解

css3基础 2022-07-14 17:33:41小码哥的IT人生shichen

CSS text-decoration-color 属性

定义和用法

text-decoration-color 属性规定 text-decoration(下划线、上划线、穿线)的颜色。

另请参阅:

CSS 教程:CSS 文本

HTML DOM 参考手册:textDecorationColor 属性

实例

把 text-decoration 的颜色设置为红色:

p {
  text-decoration: underline;
  text-decoration-color: red;
}

 

完整实例【亲自试一试】:

<!DOCTYPE html>
<html>
<head>
<style>
p {
  text-decoration: underline;
  -webkit-text-decoration-color: red; /* Safari */
  text-decoration-color: red;
}
</style>
</head>
<body>
<h1>text-decoration-color 属性</h1>
<p>现在,下划线的颜色应该是红色!</p>
<p><b>注释:</b>版本 79 之前的 Edge 不支持 text-decoration-color 属性。</p>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

CSS 语法

text-decoration-color: color|initial|inherit;

属性值

描述
color 规定 text-decoration 的颜色。
initial 将此属性设置为其默认值。参阅 initial
inherit 从其父元素继承此属性。参阅 inherit

技术细节

默认值: currentColor
继承:
动画制作: 支持。请参阅:动画相关属性
版本: CSS3
JavaScript 语法: object.style.textDecorationColor="red"

浏览器支持

表格中的数字注明了完全支持该属性的首个浏览器版本。

带 -webkit- 或 -moz- 的数字表示使用前缀的首个版本。

Chrome IE / Edge Firefox Safari Opera
57.0 79.0 36.0
6.0 -moz-
12.1
7.1 -webkit-
44.0

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024