p { text-decoration: line-through; }
大家也可以通过给标签添加class,来控制特定元素的删除线效果。例如,下面的代码可以让class为highlight的文字添加上删除线:
.highlight { text-decoration: line-through; }
需要注意的是,text-decoration属性除了可以控制删除线,还可以控制下划线、虚线等效果。如果大家只想添加删除线而不改变文字样式,可以将其余属性设置为none,并只保留line-through。例如:
p { text-decoration: line-through; text-decoration-style: solid; text-decoration-color: black; text-decoration-line: line-through; }
以上代码只会添加黑色的实线删除线效果。