--- id: 587d78ad367417b2b2512af9 title: Usar a propriedade align-items no Tweet Embed challengeType: 0 videoUrl: 'https://scrimba.com/p/pVaDAv/cd3PNfq' forumTopicId: 301106 dashedName: use-the-align-items-property-in-the-tweet-embed --- # --description-- O último desafio apresentou a propriedade `align-items` oferecendo um exemplo. Esta propriedade pode ser aplicada a alguns elementos do tweet para alinhar os flex items dentro deles. # --instructions-- Adicione a propriedade CSS `align-items` ao elemento `.follow-btn` que se encontra dentro do header. Defina o valor dessa propriedade para `center`. # --hints-- O elemento de classe `.follow-btn` deve ser renderizado na página. Lembre-se de desativar as extensões que bloqueiam anúncios. ```js assert($('.follow-btn').length > 0 && $('.follow-btn').css('display') !== 'none'); ``` O elemento de classe `.follow-btn` deve ter a propriedade `align-items` definida com o 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
```