已废弃
This feature is obsolete. Although it may still work in some browsers, its use is discouraged since it could be removed at any time. Try to avoid using it.
Summary
HTML <strike>
元素(或者 HTML 删除线元素)在文本上放置删除线。
属性
这个元素仅仅包含 全局属性
DOM 接口
这个元素实现了 HTMLElement
接口。
实现注解:直到 Gecko 1.9.2(包含),Firefox 为这个元素实现了 HTMLSpanElement
接口。
示例
<strike>Today's Special: Salmon</strike> SOLD OUT<br /> <s>Today's Special: Salmon</s> SOLD OUT
代码结果为:
Today's Special: Salmon SOLD OUT
Today's Special: Salmon SOLD OUT
另见
<s>
元素。<del>
元素应该在数据已经删除的情况下使用。- CSS
text-decoration
属性可以用于使用下划线来装饰文本。