--- id: 5a9036ee38fddaf9a66b5d34 title: Use CSS Grid units to Change the Size of Columns and Rows challengeType: 0 videoUrl: '' localeTitle: استخدم وحدات CSS الشبكة لتغيير حجم الأعمدة والصفوف --- ## Description undefined ## Instructions
أنشئ شبكة بثلاثة أعمدة بعرضها كالتالي: 1fr و 100px و 2fr.
## Tests
```yml tests: - text: '' testString: 'assert(code.match(/.container\s*?{[\s\S]*grid-template-columns\s*?:\s*?1fr\s*?100px\s*?2fr\s*?;[\s\S]*}/gi), "container class should have a grid-template-columns property that has three columns with the following widths: 1fr, 100px, and 2fr.");' ```
## Challenge Seed
```html
1
2
3
4
5
```
## Solution
```js // solution required ```