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