--- id: 587d78ad367417b2b2512af9 title: Use the align-items Property in the Tweet Embed challengeType: 0 videoUrl: 'https://scrimba.com/p/pVaDAv/cd3PNfq' forumTopicId: 301106 localeTitle: 在推文中使用 align-items 属性 --- ## Description
上一个挑战介绍了align-items属性并给出了例子。可以对嵌入推文的一些元素使用这个属性,以调整其中 flex 子元素的位置。
## Instructions
在 header 的.follow-btn添加 CSS 属性align-items,把值设为 center。
## Tests
```yml tests: - text: .follow-btn应有align-items属性,其值应为 center. testString: assert($('.follow-btn').css('align-items') == 'center'); ```
## Challenge Seed
```html
Quincy Larson's profile picture

Quincy Larson

@ossia

I meet so many people who are in search of that one trick that will help them work smart. Even if you work smart, you still have to work hard.

1:32 PM - 12 Jan 2018
```
## Solution
```html // solution required ```