使用 CSS 删除文本

javascriptweb developmentfront end scripts

使用 text-decoration 属性使用 CSS 删除文本。您可以尝试运行以下代码来为文本添加下划线:

<html>
   <head>
   </head>
   <body>
      <p style = "text-decoration:line-through;">
         这将被删除。
      </p>
   </body>
</html>

相关文章