--- id: 5a9036ee38fddaf9a66b5d36 title: Create a Row Gap using grid-row-gap challengeType: 0 videoUrl: '' localeTitle: إنشاء فجوة صف باستخدام الفجوة بين الشبكة --- ## Description
يمكنك إضافة الفجوة بين الصفوف من الشبكة باستخدام grid-row-gap في بنفس الطريقة التي قمت بإضافتها وجود فجوة بين الأعمدة في التحدي السابق.
## Instructions
أنشئ فجوة للصفوف التي يبلغ طولها 5 5px .
## Tests
```yml tests: - text: يجب أن container فئة container على خاصية grid-row-gap لها قيمة 5px . testString: 'assert(code.match(/.container\s*?{[\s\S]*grid-row-gap\s*?:\s*?5px\s*?;[\s\S]*}/gi), "container class should have a grid-row-gap property that has the value of 5px.");' ```
## Challenge Seed
```html
1
2
3
4
5
```
## Solution
```js // solution required ```