--- id: 5a90375238fddaf9a66b5d3b title: Align an Item Vertically using align-self challengeType: 0 videoUrl: https://scrimba.com/p/pByETK/cmzd4fz forumTopicId: 301123 localeTitle: Выровнять элемент по вертикали, используя выравнивание --- ## Description
Так же, как вы можете выровнять элемент по горизонтали, есть способ выровнять элемент по вертикали. Для этого вы используете свойство align-self для элемента. Это свойство принимает все те же значения, что и justify-self из последнего вызова.
## Instructions
Выровняйте элемент с элементом item3 вертикально в end .
## Tests
```yml tests: - text: item3 class should have a align-self property that has the value of end. testString: assert(code.match(/.item3\s*?{[\s\S]*align-self\s*?:\s*?end\s*?;[\s\S]*}/gi)); ```
## Challenge Seed
```html
1
2
3
4
5
```
## Solution
```html var code = ".item3 {align-self: end;}" ```