aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/html/element/u
diff options
context:
space:
mode:
Diffstat (limited to 'files/zh-cn/web/html/element/u')
-rw-r--r--files/zh-cn/web/html/element/u/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/files/zh-cn/web/html/element/u/index.html b/files/zh-cn/web/html/element/u/index.html
index bb2974f5cc..cb1be7fa22 100644
--- a/files/zh-cn/web/html/element/u/index.html
+++ b/files/zh-cn/web/html/element/u/index.html
@@ -91,14 +91,14 @@ translation_of: Web/HTML/Element/u
<h4 id="HTML">HTML</h4>
-<pre class="notranslate"><code>&lt;p&gt;This paragraph includes a &lt;u class="spelling"&gt;wrnogly&lt;/u&gt;
+<pre class="brush: html notranslate"><code>&lt;p&gt;This paragraph includes a &lt;u class="spelling"&gt;wrnogly&lt;/u&gt;
spelled word.&lt;/p&gt;</code></pre>
<p>在 HTML 中,我们看到 <code>&lt;u&gt;</code> 使用了一个类 <code>spelling</code>,用于表示 “wrongly” 一词的拼写错误。</p>
<h4 id="CSS">CSS</h4>
-<pre class="notranslate"><code>u.spelling {
+<pre class="brush: css notranslate"><code>u.spelling {
text-decoration: red wavy underline;
}</code></pre>