aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/html/element/strike
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/zh-cn/web/html/element/strike
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/zh-cn/web/html/element/strike')
-rw-r--r--files/zh-cn/web/html/element/strike/index.html47
1 files changed, 47 insertions, 0 deletions
diff --git a/files/zh-cn/web/html/element/strike/index.html b/files/zh-cn/web/html/element/strike/index.html
new file mode 100644
index 0000000000..c9481e3c88
--- /dev/null
+++ b/files/zh-cn/web/html/element/strike/index.html
@@ -0,0 +1,47 @@
+---
+title: <strike>
+slug: Web/HTML/Element/strike
+translation_of: Web/HTML/Element/strike
+---
+<div>{{ Obsolete_header() }}</div>
+
+<h2 id="Summary">Summary</h2>
+
+<p><strong>HTML <code>&lt;strike&gt;</code> 元素</strong>(或者 HTML 删除线元素)在文本上放置删除线。</p>
+
+<div class="note">
+<p><strong>使用注解</strong>:这个元素在 HTML4 和 XHTML1 中废除了,并且在 HTML5 中移除。如果语义上合适的话(也就是如果表示删除的内容),使用 {{ HTMLElement("del") }} 来代替。在所有其它的情况中,使用 {{ HTMLElement("s") }}。</p>
+</div>
+
+<h2 id="属性">属性</h2>
+
+<p>这个元素仅仅包含 <a href="https://developer.mozilla.org/en-US/docs/HTML/Global_attributes">全局属性</a></p>
+
+<h2 id="DOM_接口">DOM 接口</h2>
+
+<p>这个元素实现了 {{domxref('HTMLElement')}} 接口。</p>
+
+<div class="note">
+<p><strong>实现注解:</strong>直到 Gecko 1.9.2(包含),Firefox 为这个元素实现了  {{domxref('HTMLSpanElement')}} 接口。</p>
+</div>
+
+<h2 id="示例">示例</h2>
+
+<pre class="brush:html">&lt;strike&gt;Today's Special: Salmon&lt;/strike&gt; SOLD OUT&lt;br /&gt;
+&lt;s&gt;Today's Special: Salmon&lt;/s&gt; SOLD OUT
+</pre>
+
+<p id="Result">代码结果为:</p>
+
+<p><s>Today's Special: Salmon</s> SOLD OUT<br>
+ <s>Today's Special: Salmon</s> SOLD OUT</p>
+
+<h2 id="另见">另见</h2>
+
+<ul>
+ <li>{{ HTMLElement("s") }} 元素。</li>
+ <li>{{ HTMLElement("del") }} 元素应该在数据已经删除的情况下使用。</li>
+ <li>CSS {{ cssxref("text-decoration") }} 属性可以用于使用下划线来装饰文本。</li>
+</ul>
+
+<div>{{ HTMLRef }}</div>