--- id: 5a90373638fddaf9a66b5d39 title: Use grid-row to Control Spacing challengeType: 0 videoUrl: '' localeTitle: 使用网格行控制间距 --- ## Description
当然,像网格列一样,您也可以使一个项目同时占据多个网格行。您可以使用grid-row属性来定义项目开始和结束的网格行。
## Instructions
让带有item5class选择器的元素占有最后两排网格行。
## Tests
```yml tests: - text: item5class应该有一个具有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.");' ```
## Challenge Seed
```html
1
2
3
4
5
```
## Solution
```js // solution required ```