aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn
diff options
context:
space:
mode:
authoryiheeng <96060412+yiheeng@users.noreply.github.com>2022-02-16 00:19:50 +0800
committerGitHub <noreply@github.com>2022-02-16 00:19:50 +0800
commitac7ea6c843ebaa26de7ca693380f0e4446e4d2a5 (patch)
treed09253df165b82b9d54de059b806ca6c9bfaff73 /files/zh-cn
parentb58ed6cc6734da2080affcd9aaa542489f7c4039 (diff)
downloadtranslated-content-ac7ea6c843ebaa26de7ca693380f0e4446e4d2a5.tar.gz
translated-content-ac7ea6c843ebaa26de7ca693380f0e4446e4d2a5.tar.bz2
translated-content-ac7ea6c843ebaa26de7ca693380f0e4446e4d2a5.zip
fix typo (#3999)
Diffstat (limited to 'files/zh-cn')
-rw-r--r--files/zh-cn/learn/html/introduction_to_html/html_text_fundamentals/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-cn/learn/html/introduction_to_html/html_text_fundamentals/index.html b/files/zh-cn/learn/html/introduction_to_html/html_text_fundamentals/index.html
index 39547cae31..2409283602 100644
--- a/files/zh-cn/learn/html/introduction_to_html/html_text_fundamentals/index.html
+++ b/files/zh-cn/learn/html/introduction_to_html/html_text_fundamentals/index.html
@@ -726,7 +726,7 @@ translation_of: Learn/HTML/Introduction_to_HTML/HTML_text_fundamentals
<p>I am counting on you. <strong>Do not</strong> be late!</p>
-<p>在HTML中我们用{{htmlelement("strong")}} (strong importance) 元素来标记这样的请况。这样做既可以让文档更加地有用,也可以被屏幕阅读器识别出来,并以不同的语调发出。浏览器默认风格为粗体,但你不应该纯粹使用这个标签来获得粗体风格,为了获得粗体风格,你应该使用{{htmlelement("span")}}元素和一些CSS,或者是 {{htmlelement("b")}} 元素 (见下文)。</p>
+<p>在HTML中我们用{{htmlelement("strong")}} (strong importance) 元素来标记这样的情况。这样做既可以让文档更加地有用,也可以被屏幕阅读器识别出来,并以不同的语调发出。浏览器默认风格为粗体,但你不应该纯粹使用这个标签来获得粗体风格,为了获得粗体风格,你应该使用{{htmlelement("span")}}元素和一些CSS,或者是 {{htmlelement("b")}} 元素 (见下文)。</p>
<pre class="brush: html notranslate">&lt;p&gt;This liquid is &lt;strong&gt;highly toxic&lt;/strong&gt;.&lt;/p&gt;