--- id: 587d78ac367417b2b2512af5 title: Застосування властивості flex-direction для створення стовпця у вбудованому твіті challengeType: 0 videoUrl: 'https://scrimba.com/p/pVaDAv/cnzdVC9' forumTopicId: 301103 dashedName: apply-the-flex-direction-property-to-create-a-column-in-the-tweet-embed --- # --description-- Раніше для вбудованих твітів `header` та `footer` використовувалася властивість `flex-direction` зі значенням рядка. Так само і елементи всередині `.profile-name` функціонували добре у вигляді стовпця. # --instructions-- Додайте властивість CSS `flex-direction` до елементу заголовка `.profile-name` та встановіть значення `column`. # --hints-- Ваш `.follow-btn` має відображатися на цій сторінці. Переконайтеся, що всі розширення вимкнено, наприклад блокувальники реклами. ```js assert($('.follow-btn').length > 0 && $('.follow-btn').css('display') !== 'none'); ``` Елемент `.profile-name` повинен мати властивість `flex-direction`, встановлену як `column`. ```js assert($('.profile-name').css('flex-direction') == 'column'); ``` # --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
```