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

* chore(i8n,learn): processed translations

* Update curriculum/challenges/chinese/01-responsive-web-design/applied-visual-design/use-the-u-tag-to-underline-text.md

Co-authored-by: Randell Dawson <5313213+RandellDawson@users.noreply.github.com>

Co-authored-by: Crowdin Bot <support+bot@crowdin.com>
Co-authored-by: Nicholas Carrigan (he/him) <nhcarrigan@gmail.com>
Co-authored-by: Randell Dawson <5313213+RandellDawson@users.noreply.github.com>
This commit is contained in:
camperbot
2021-03-05 08:43:24 -07:00
committed by GitHub
parent ae79525493
commit 5075f14248
120 changed files with 975 additions and 971 deletions

View File

@@ -13,7 +13,7 @@ dashedName: adjust-the-tone-of-a-color
# --instructions--
所有元素的默认 `background-color` 都是 `transparent`。 当前页面的导航栏 `nav` 背景色之所以看起来是蓝绿色,是因为它背后的 `header``background-color` 属性值为 `cyan`请将 `nav` `background-color` 也设置`cyan`但把它的饱和度调整`80% saturation`,亮度调整`25% lightness`
所有元素的默认 `background-color` 都是 `transparent`。 当前页面的导航栏 `nav` 背景色之所以看起来是蓝绿色,是因为它背后的 `header``background-color` 属性值为 `cyan` `nav` 元素增加一个 `background-color`,使它的颜色也`cyan`,饱和度为 `80%`,亮度为 `25%`,以修改它的色调和阴影
# --hints--

View File

@@ -13,6 +13,8 @@ dashedName: use-the-u-tag-to-underline-text
# --instructions--
`u` 标签包裹的文本内容应为 `Ph.D. students`
**注意:** 如果使用 `u` 标签添加下划线,可能混淆文本和链接,则应避免使用它。 锚标签也有默认的下划线格式。
# --hints--
@@ -23,7 +25,7 @@ dashedName: use-the-u-tag-to-underline-text
assert($('u').length === 1);
```
`u` 标签的内容文本应为 `Ph.D. students`
`u` 标签的文本内容应为 `Ph.D. students`
```js
assert($('u').text() === 'Ph.D. students');
@@ -107,12 +109,12 @@ assert($('u').text() === 'Ph.D. students');
<div class="cardContent">
<div class="cardText">
<h4>Google</h4>
<p>Google was founded by Larry Page and Sergey Brin while they were <u>Ph.D.
students</u> at <strong>Stanford University</strong>.</p>
<p>Google was founded by Larry Page and Sergey Brin while they were <u>Ph.D. students</u> at <strong>Stanford University</strong>.</p>
</div>
<div class="cardLinks">
<div class="cardLinks">
<a href="https://en.wikipedia.org/wiki/Larry_Page" target="_blank" class="links">Larry Page</a><br><br>
<a href="https://en.wikipedia.org/wiki/Sergey_Brin" target="_blank" class="links">Sergey Brin</a>
<a href="https://en.wikipedia.org/wiki/Sergey_Brin" target="_blank" class="links">Sergey Brin</a>
</div>
</div>
</div>
```