W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
运行代码
<!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>