--- id: 587d78ac367417b2b2512af7 title: Використовуйте властивість justify-content у вбудованому твіті challengeType: 0 videoUrl: 'https://scrimba.com/p/pVaDAv/c43GgTa' forumTopicId: 301115 dashedName: use-the-justify-content-property-in-the-tweet-embed --- # --description-- Останній запит показав приклад властивості `justify-content`. Ця властивість може застосовуватись для вирівнювання об'єктів у елементі `.profile-name` для додавання коментаря. # --instructions-- Додайте CSS властивість `justify-content` до елемента заголовку `.profile-name` та налаштуйте значення для будь-якого з варіантів останнього запиту. # --hints-- Ваш `.follow-btn` код повинен відображатися на сторінці. Переконайтеся, що такі розширення, як блокувальники реклами, вимкнено. ```js assert($('.follow-btn').length > 0 && $('.follow-btn').css('display') !== 'none'); ``` Елемент `.profile-name` повинен мати властивість `justify-content`, щоб налаштувати будь-яке з цих значень: `center`, `flex-start`, `flex-end`, `space-between`, `space-around`, чи `space-evenly`. ```js assert( code.match( /header\s.profile-name\s*{\s*?.*?\s*?.*?\s*?\s*?.*?\s*?justify-content\s*:\s*(center|flex-start|flex-end|space-between|space-around|space-evenly)\s*;/g ) ); ``` # --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
```