--- id: 5a94fdf869fb03452672e45b challengeType: 0 videoUrl: 'https://scrimba.com/p/pByETK/ckzPeUv' forumTopicId: 301121 title: 使用 align-items 垂直对齐所有项目 --- ## Description
对网格容器使用align-items属性可以给网格中所有的网格项设置沿列轴对齐的方式。
## Instructions
请使用align-items属性将所有网格项移动到单元格的末尾。
## Tests
```yml tests: - text: 'container类应该有align-items属性且值为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
```js // solution required ```