--- id: 5a9036e138fddaf9a66b5d33 title: Add Rows with grid-template-rows challengeType: 0 videoUrl: '' localeTitle: إضافة صفوف مع صفوف قالب الشبكة --- ## Description
الشبكة التي أنشأتها في التحدي الأخير ستحدد عدد الصفوف تلقائيًا. لضبط الصفوف يدويًا ، استخدم خاصية grid-template-rows بنفس طريقة استخدام grid-template-columns في التحدي السابق.
## Instructions
أضف صفين إلى الشبكة التي يبلغ طول كل منها 50px .
## Tests
```yml tests: - text: يجب أن container فئة container grid-template-rows خاصية grid-template-rows 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 // solution required ```