From c16014531ee07322a7d553af5d1fa009208e1fca Mon Sep 17 00:00:00 2001
From: Picklebunker <44532916+Picklebunker@users.noreply.github.com>
Date: Tue, 7 May 2019 15:14:06 -0400
Subject: [PATCH] Updated grammar and readability (#30658)
* Updated grammar and readability
Terms such as class and item are either referred to in English or avoided in the Chinese versions of tutorials that I have found, as translating them directly does not make much sense.
Changed some sentence structures for the ease of understandings.
* fix typo
---
.../css-grid/use-grid-row-to-control-spacing.chinese.md | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/curriculum/challenges/chinese/01-responsive-web-design/css-grid/use-grid-row-to-control-spacing.chinese.md b/curriculum/challenges/chinese/01-responsive-web-design/css-grid/use-grid-row-to-control-spacing.chinese.md
index f1371fa853..a49cc63162 100644
--- a/curriculum/challenges/chinese/01-responsive-web-design/css-grid/use-grid-row-to-control-spacing.chinese.md
+++ b/curriculum/challenges/chinese/01-responsive-web-design/css-grid/use-grid-row-to-control-spacing.chinese.md
@@ -7,17 +7,17 @@ localeTitle: 使用网格行控制间距
---
## Description
-当然,您可以像使用列一样使项目消耗多行。您可以使用网格项上的grid-row
属性定义项目开始和停止的水平线。
+当然,像网格列一样,您也可以使一个项目同时占据多个网格行。您可以使用grid-row
属性来定义项目开始和结束的网格行。
## Instructions
-
+让带有item5
class选择器的元素占有最后两排网格行。
## Tests
```yml
tests:
- - text: item5
类应该有一个grid-row
具有的值属性2 / 4
+ - text: item5
class应该有一个具有2 / 4
值属性的grid-row
.
testString: 'assert(code.match(/.item5\s*?{[\s\S]*grid-row\s*?:\s*?2\s*?\/\s*?4\s*?;[\s\S]*}/gi), "item5
class should have a grid-row
property that has the value of 2 / 4
.");'
```