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