aboutsummaryrefslogtreecommitdiff
path: root/files
diff options
context:
space:
mode:
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>