--- id: 587d78ad367417b2b2512af9 title: Utiliza la propiedad align-items en el tweet insertado challengeType: 0 videoUrl: 'https://scrimba.com/p/pVaDAv/cd3PNfq' forumTopicId: 301106 dashedName: use-the-align-items-property-in-the-tweet-embed --- # --description-- El último desafío introdujo la propiedad `align-items` y dio un ejemplo. Esta propiedad se puede aplicar a unos cuantos elementos del tweet insertado para alinear los elementos flexibles dentro de ellos. # --instructions-- Agrega la propiedad CSS `align-items` al elemento `.follow-btn` del encabezado. Establece el valor a `center`. # --hints-- Tu `.follow-btn` debe representarse en la página. Asegúrate de desactivar las extensiones, como los bloqueadores de anuncios. ```js assert($('.follow-btn').length > 0 && $('.follow-btn').css('display') !== 'none'); ``` El elemento `.follow-btn` debe tener la propiedad `align-items` establecida en un valor de `center`. ```js assert($('.follow-btn').css('align-items') == 'center'); ``` # --seed-- ## --seed-contents-- ```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
``` # --solutions-- ```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
```