chore(i18n,curriculum): update translations (#44346)

This commit is contained in:
camperbot
2021-12-03 01:21:50 -08:00
committed by GitHub
parent 6af8ee6528
commit cd4d53f4c0
10 changed files with 90 additions and 74 deletions

View File

@ -9,9 +9,9 @@ dashedName: use-the-css-transform-property-skewx-to-skew-an-element-along-the-x-
# --description--
接下来要介绍的 `transform` 属性是 `skewX()`:它使选择的元素沿着 X 轴(横向)翻转指定的角度。
接下来要介绍的 `transform` 属性是 `skewX()`:它使选择的元素沿着 X 轴(横向)倾斜指定的角度。
下面的代码沿着 X 轴翻转段落元素 -32 度。
下面的代码沿着 X 轴倾斜段落元素 -32 度。
```css
p {
@ -21,11 +21,11 @@ p {
# --instructions--
使用 `transform` 属性沿 X 轴翻转 id 为 `bottom` 的元素 24 度。
使用 `transform` 属性沿 X 轴倾斜 id 为 `bottom` 的元素 24 度。
# --hints--
id 为 `bottom` 的元素应该沿着 X 轴翻转 24 度。
id 为 `bottom` 的元素应该沿着 X 轴倾斜 24 度。
```js
assert(code.match(/#bottom\s*?{\s*?.*?\s*?transform:\s*?skewX\(24deg\);/g));