---
id: 5a94fdf869fb03452672e45b
title: Align All Items Vertically using align-items
challengeType: 0
videoUrl: ''
localeTitle: محاذاة جميع العناصر رأسيًا باستخدام عناصر المحاذاة
---
## Description
باستخدام الخاصية align-items على حاوية شبكة ، سيتم ضبط المحاذاة الرأسية لكافة العناصر في شبكتنا.
## Instructions
استخدمه الآن لنقل جميع العناصر إلى نهاية كل خلية.
## Tests
```yml
tests:
- text: يجب أن container فئة container على خاصية align-items تحتوي على قيمة end .
testString: 'assert(code.match(/.container\s*?{[\s\S]*align-items\s*?:\s*?end\s*?;[\s\S]*}/gi), "container class should have a align-items property that has the value of end.");'
```
## Challenge Seed
## Solution
```js
// solution required
```