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