aboutsummaryrefslogtreecommitdiff
path: root/files
diff options
context:
space:
mode:
authorbluzoey <50247776+bluzoey@users.noreply.github.com>2021-08-30 18:36:32 +0800
committerGitHub <noreply@github.com>2021-08-30 18:36:32 +0800
commit6b49171c5ba863559a5956814dd938222afefa64 (patch)
treeece3c5cb72c9c1637a48992e714a3adf2c80bade /files
parentf3eee4c80bfb83f3e8e7579b804eb205d76d1733 (diff)
downloadtranslated-content-6b49171c5ba863559a5956814dd938222afefa64.tar.gz
translated-content-6b49171c5ba863559a5956814dd938222afefa64.tar.bz2
translated-content-6b49171c5ba863559a5956814dd938222afefa64.zip
fix mistranslation (#2223)
* Update index.html fix wrong translation * Update index.html
Diffstat (limited to 'files')
-rw-r--r--files/zh-cn/learn/css/first_steps/how_css_is_structured/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-cn/learn/css/first_steps/how_css_is_structured/index.html b/files/zh-cn/learn/css/first_steps/how_css_is_structured/index.html
index aec4a3a61d..6f09222cf6 100644
--- a/files/zh-cn/learn/css/first_steps/how_css_is_structured/index.html
+++ b/files/zh-cn/learn/css/first_steps/how_css_is_structured/index.html
@@ -215,7 +215,7 @@ p {
color: blue;
}</pre>
-<p>但是,在我们使用类选择器和元素选择器的早期块中,类将获胜,使得段落变红--即使它出现在样式表的前面。一个类被描述为比元素选择器更具体,或者具有更多的特异性,所以它获胜了。</p>
+<p>但是,在我们同时使用了类选择器和元素选择器的前一个例子中,类将获胜,使得段落变红--即使它出现在样式表的前面。一个类被描述为比元素选择器更具体,或者具有更多的特异性,所以它获胜了。</p>
<p><strong>自己试试上面的实验--将HTML添加到您的实验中,然后将两个p{.}规则添加到样式表中。接下来,将第一个p选择器更改为.Special,以查看它如何更改样式。</strong></p>