运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往空间
<!DOCTYPE html> <html> <head> <style> #myDIV { text-decoration: underline; animation: mymove 5s infinite; } @keyframes mymove { 50% { text-decoration-color: red; } } </style> </head> <body> <h1>Animation of text-decoration-color</h1> <p>Gradually change the color of the underline from black to red, and back:<p> <div id="myDIV"> <p>This is a paragraph</p> </div> <p><strong>Note:</strong> The text-decoration-color does not work Edge prior 79.</p> </body> </html>