代码示例:(标识:cssref_anim_text-decoration-color)
<!DOCTYPE html>
<html>
<head>
<style> 
#myDIV {
  text-decoration: underline;
  animation: mymove 5s infinite;
}

@keyframes mymove {
  50% {
    text-decoration-color: red;    
  }
}
</style>
</head>
<body>

<h1>text-decoration-color 的动画效果:</h1>

<p>逐渐将下划线的颜色从黑色更改为红色,然后再更回为:<p>

<div id="myDIV">
  <p>This is a paragraph</p>
</div>

<p><b>注释:</b>text-decoration-color 在版本 79 之前的 Edge 中无效。</p>

</body>
</html>
运行结果: