chore(i8n,curriculum): processed translations (#41548)

Co-authored-by: Crowdin Bot <support+bot@crowdin.com>
This commit is contained in:
camperbot
2021-03-21 10:58:20 -06:00
committed by GitHub
parent 9ac00ce25b
commit 7215a6fa77
67 changed files with 332 additions and 165 deletions

View File

@ -15,11 +15,15 @@ dashedName: create-a-media-query
下面是一个媒体查询的例子,当设备宽度小于或等于 100px 时返回内容:
`@media (max-width: 100px) { /* CSS Rules */ }`
```css
@media (max-width: 100px) { /* CSS Rules */ }
```
以下定义的媒体查询,是当设备高度大于或等于 350px 时返回内容:
`@media (min-height: 350px) { /* CSS Rules */ }`
```css
@media (min-height: 350px) { /* CSS Rules */ }
```
注意,只有当媒体类型与所使用的设备的类型匹配时,媒体查询中定义的 CSS 才生效。

View File

@ -17,7 +17,9 @@ dashedName: make-typography-responsive
下面这个例子是设置 `body` 标签的宽度为视窗宽度的 30%。
`body { width: 30vw; }`
```css
body { width: 30vw; }
```
# --instructions--