--- id: 587d78ad367417b2b2512af9 title: Use the align-items Property in the Tweet Embed challengeType: 0 videoUrl: '' localeTitle: 使用Tweet Embed中的align-items属性 --- ## Description
最后一个挑战引入了align-items属性并举了一个例子。此属性可应用于一些tweet嵌入元素,以对齐其中的flex项。
## Instructions
将CSS属性align-items添加到标题的.follow-btn元素中。将值设置为居中。
## Tests
```yml tests: - text: .follow-btn元素应将align-items属性设置为center的值。 testString: 'assert($(".follow-btn").css("align-items") == "center", "The .follow-btn element should have the align-items property set to a value of 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
```js // solution required ```