使用 CSS 划掉文本
使用 text-decoration 属性来划掉 CSS 中的文本。您可以尝试运行以下代码来给文本加下划线
<html> <head> </head> <body> <p style = "text-decoration:line-through;"> This will be striked through. </p> </body> </html>
广告
使用 text-decoration 属性来划掉 CSS 中的文本。您可以尝试运行以下代码来给文本加下划线
<html> <head> </head> <body> <p style = "text-decoration:line-through;"> This will be striked through. </p> </body> </html>