<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>这是一个段落</p>
</div>
<p><strong>注意:</strong> text-decoration-color 在 Edge 79 之前不起作用。</p>
</body>
</html>