运行 ❯
获取您
自己
的网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> /* Default CSS Values */ s { text-decoration: line-through; } </style> </head> <body> <p>An s element is displayed like this:</p> <p><s>Some no-longer correct text.</s></p> <p>A customized s element (changed "text-decoration"):</p> <p><s style="text-decoration:underline;">Some no-longer correct text.</s></p> </body> </html>