--- id: 587d78ad367417b2b2512af9 title: Usare la proprietà align-items nel Tweet incorporato challengeType: 0 videoUrl: 'https://scrimba.com/p/pVaDAv/cd3PNfq' forumTopicId: 301106 dashedName: use-the-align-items-property-in-the-tweet-embed --- # --description-- L'ultima sfida ha introdotto la proprietà `align-items` e ha dato un esempio. Questa proprietà può essere applicata ad alcuni elementi tweet incorporati per allineare gli elementi flex al loro interno. # --instructions-- Aggiungi la proprietà CSS `align-items` all'elemento `.follow-btn`. Imposta il valore su `center`. # --hints-- Il tuo `.follow-btn` dovrebbe essere visualizzato nella pagina. Assicurati di disattivare tutte le estensioni come ad esempio gli adblock. ```js assert($('.follow-btn').length > 0 && $('.follow-btn').css('display') !== 'none'); ``` L'elemento `.follow-btn` dovrebbe avere la proprietà `align-items` impostata su un valore di `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
```