chore(i18n,learn): processed translations (#41387)

* chore(i8n,learn): processed translations

* fix: remove extra space

Co-authored-by: Nicholas Carrigan (he/him) <nhcarrigan@gmail.com>

Co-authored-by: Crowdin Bot <support+bot@crowdin.com>
Co-authored-by: Randell Dawson <5313213+RandellDawson@users.noreply.github.com>
Co-authored-by: Nicholas Carrigan (he/him) <nhcarrigan@gmail.com>
This commit is contained in:
camperbot
2021-03-07 09:15:14 -07:00
committed by GitHub
parent af71231b39
commit 0432ec995f
30 changed files with 289 additions and 281 deletions

View File

@ -21,13 +21,13 @@ CSS 的 class 具有可重用性,可应用于各种 HTML 元素。
</style>
```
可以看到,我们在 `<style>` 样式声明区域里,创建了一个名为 `blue-text``class` 选择器。 你可以将一个 class 添加到一个 HTML 元素里,如下所示`<h2 class="blue-text">CatPhotoApp</h2>`。注意在 CSS `style`class 名以一个句点开在 HTML 元素的 class 属性中,名称前面没有句点。
可以看到,我们在 `<style>` 样式声明区域里,创建了一个名为 `blue-text``class` 选择器。 你可以这样将 class 应用于 HTML 元素:`<h2 class="blue-text">CatPhotoApp</h2>` 注意在 CSS `style` 元素class 名以一个句点开。 在 HTML 元素的 class 属性中,class 名的开头没有句点。
# --instructions--
`style` 样式声明里,把 `h2` 元素选择器改为 `.red-text` class 选择器,同时将颜色 `blue` 改为 `red`
`h2` 元素`class` 属性值设置为 `'red-text'`
`h2` 元素设置一个值`red-text``class` 属性
# --hints--