--- id: 5a9036e138fddaf9a66b5d33 title: Add Rows with grid-template-rows challengeType: 0 videoUrl: 'https://scrimba.com/p/pByETK/cbp9Pua' forumTopicId: 301119 --- # --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. # --hints-- `container` class should have a `grid-template-rows` property with two units of `50px`. ```js assert( code.match( /.container\s*?{[\s\S]*grid-template-rows\s*?:\s*?50px\s*?50px\s*?;[\s\S]*}/gi ) ); ``` # --seed-- ## --seed-contents-- ```html
1
2
3
4
5
``` # --solutions-- ```html ```