diff options
author | Zen&CS <35493996+smallnine9@users.noreply.github.com> | 2021-08-30 21:40:15 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-30 21:40:15 +0800 |
commit | c5e7f70a3ad8e59d006e019d5fba4ddacf5664b7 (patch) | |
tree | 4d75d6707b1b0eca68cb1db45200330b52e14d78 /files | |
parent | f3a7d0d9e00ee54a1c65bcfda3c66667e0ea0c41 (diff) | |
download | translated-content-c5e7f70a3ad8e59d006e019d5fba4ddacf5664b7.tar.gz translated-content-c5e7f70a3ad8e59d006e019d5fba4ddacf5664b7.tar.bz2 translated-content-c5e7f70a3ad8e59d006e019d5fba4ddacf5664b7.zip |
Improve Learn/CSS/First_steps/Getting_started, zh-CN (#2277)
Diffstat (limited to 'files')
-rw-r--r-- | files/zh-cn/learn/css/first_steps/getting_started/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/files/zh-cn/learn/css/first_steps/getting_started/index.html b/files/zh-cn/learn/css/first_steps/getting_started/index.html index 7b8a7aacd8..a4c358224a 100644 --- a/files/zh-cn/learn/css/first_steps/getting_started/index.html +++ b/files/zh-cn/learn/css/first_steps/getting_started/index.html @@ -225,9 +225,9 @@ a:visited { <p>一个朴素的 HTML 文档一般来说对任何人都是可以无障碍访问的 ,当你开始为它添加样式,记得不要破坏这种可访问性。</p> </div> -<h2 id="将选择子和关系选择器组合起来">将选择子和关系选择器组合起来</h2> +<h2 id="同时使用选择器和选择符">同时使用选择器和选择符</h2> -<p>你可以将多个选择子和关系选择器组合起来。来看一些例子:</p> +<p>你可以同时使用选择器和选择符。来看一些例子:</p> <pre class="brush: css">/* selects any <span> that is inside a <p>, which is inside an <article> */ article p span { ... } |