代码示例:(标识:cssref_text-decoration-color)
<!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>
运行结果: