--- id: 587d78ad367417b2b2512af9 title: Use the align-items Property in the Tweet Embed challengeType: 0 videoUrl: 'https://scrimba.com/p/pVaDAv/cd3PNfq' --- ## Description
The last challenge introduced the align-items property and gave an example. This property can be applied to a few tweet embed elements to align the flex items inside them.
## Instructions
Add the CSS property align-items to the header's .follow-btn element. Set the value to center.
## Tests
```yml tests: - text: The .follow-btn element should have the align-items property set to a value of 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 ```