--- id: 5a90373638fddaf9a66b5d39 title: Use grid-row to Control Spacing challengeType: 0 videoUrl: 'https://scrimba.com/p/pByETK/c9WBLU4' --- ## Description
Of course, you can make items consume multiple rows just like you can with columns. You define the horizontal lines you want an item to start and stop at using the grid-row property on a grid item.
## Instructions
Make the element with the item5 class consume the last two rows.
## Tests
```yml tests: - text: item5 class should have a grid-row property that has the value of 2 / 4. 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 var code = ".item5 {grid-row: 2 / 4;}" ```