--- id: 587d78ad367417b2b2512af9 title: Використання властивості align-items у вбудованому твіті challengeType: 0 videoUrl: 'https://scrimba.com/p/pVaDAv/cd3PNfq' forumTopicId: 301106 dashedName: use-the-align-items-property-in-the-tweet-embed --- # --description-- В останньому завданні ви побачили властивість `align-items` та її приклад. Цю властивість можна застосувати до декількох вбудованих елементів у твіті щоб вирівняти flex елементи всередині них. # --instructions-- Додайте властивість CSS `align-items` до елемента заголовку `.follow-btn`. Установіть значення `center`. # --hints-- Ваш `.follow-btn` має відображатися на сторінці. Переконайтеся, що всі розширення вимкнено, наприклад блокувальники реклами. ```js assert($('.follow-btn').length > 0 && $('.follow-btn').css('display') !== 'none'); ``` Елемент `.follow-btn` повинен мати налаштовану властивість `align-items` до значення `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
```