--- id: 587d78ad367417b2b2512af9 title: Use the align-items Property in the Tweet Embed challengeType: 0 videoUrl: '' localeTitle: Use la propiedad align-items en el Tweet Insertar --- ## Description
El último desafío introdujo la propiedad align-items y dio un ejemplo. Esta propiedad se puede aplicar a algunos elementos de inserción de tweets para alinear los elementos flexibles dentro de ellos.
## Instructions
Agregue la propiedad CSS align-items al align-items .follow-btn del encabezado. Establezca el valor en el centro.
## Tests
```yml tests: - text: El elemento .follow-btn debe tener la propiedad align-items establecida en un valor de 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 ```