--- id: 5a9036e138fddaf9a66b5d33 title: Add Rows with grid-template-rows challengeType: 0 videoUrl: 'https://scrimba.com/p/pByETK/cbp9Pua' --- ## Description
The grid you created in the last challenge will set the number of rows automatically. To adjust the rows manually, use the grid-template-rows property in the same way you used grid-template-columns in previous challenge.
## Instructions
Add two rows to the grid that are 50px tall each.
## Tests
```yml tests: - text: container class should have a grid-template-rows property with two units of 50px. testString: assert(code.match(/.container\s*?{[\s\S]*grid-template-rows\s*?:\s*?50px\s*?50px\s*?;[\s\S]*}/gi), 'container class should have a grid-template-rows property with two units of 50px.'); ```
## Challenge Seed
```html
1
2
3
4
5
```
## Solution
```js var code = ".container {grid-template-rows: 50px 50px;}" ```