运行 ❯
获取你
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> del {background-color: tomato;} ins {background-color: yellow;} </style> </head> <body> <h1>The del and ins elements + CSS</h1> <p>My favorite color is <del>blue</del> <ins>red</ins>!</p> </body> </html>