W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
运行代码
<!DOCTYPE html> <html> <head> <style> /* 默认的 CSS 值 */ del { text-decoration: line-through; } </style> </head> <body> <p>默认情况下,del 元素会这样显示:</p> <p><del>Some deleted text.</del></p> <p>自定义的 del 元素(更改 text-decoration):</p> <p><del style="text-decoration:underline;">Some deleted text.</del></p> </body> </html>