From 6b49171c5ba863559a5956814dd938222afefa64 Mon Sep 17 00:00:00 2001 From: bluzoey <50247776+bluzoey@users.noreply.github.com> Date: Mon, 30 Aug 2021 18:36:32 +0800 Subject: fix mistranslation (#2223) * Update index.html fix wrong translation * Update index.html --- files/zh-cn/learn/css/first_steps/how_css_is_structured/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -
但是,在我们使用类选择器和元素选择器的早期块中,类将获胜,使得段落变红--即使它出现在样式表的前面。一个类被描述为比元素选择器更具体,或者具有更多的特异性,所以它获胜了。
+但是,在我们同时使用了类选择器和元素选择器的前一个例子中,类将获胜,使得段落变红--即使它出现在样式表的前面。一个类被描述为比元素选择器更具体,或者具有更多的特异性,所以它获胜了。
自己试试上面的实验--将HTML添加到您的实验中,然后将两个p{.}规则添加到样式表中。接下来,将第一个p选择器更改为.Special,以查看它如何更改样式。
-- cgit v1.2.3-54-g00ecf