--- id: 587d78ab367417b2b2512af1 title: Add Flex Superpowers to the Tweet Embed challengeType: 0 videoUrl: https://scrimba.com/p/pVaDAv/c9W7MhM forumTopicId: 301100 localeTitle: Добавьте суперспособности Flex к компоненту твита --- ## Description
Справа находится компонент твита, который будет использоваться в качестве практического примера. Некоторые его составные части выглядели бы лучше при другой компоновке. В предыдущей задаче вы познакомились со свойством display: flex. Здесь вы добавите его к нескольким составным частям компонента твита, чтобы начать настройку их позиционирования.
## Instructions
Добавьте CSS свойство display: flex для всех указанных ниже элементов: обратите внимание, что необходимые селекторы уже есть в коде CSS: header, вложенные в него .profile-name, .follow-btn, h3 и h4; footer и вложенный в него .stats.
## Tests
```yml tests: - text: Your header should have a display property set to flex. testString: assert($('header').css('display') == 'flex'); - text: Your footer should have a display property set to flex. testString: assert($('footer').css('display') == 'flex'); - text: Your h3 should have a display property set to flex. testString: assert($('h3').css('display') == 'flex'); - text: Your h4 should have a display property set to flex. testString: assert($('h4').css('display') == 'flex'); - text: Your .profile-name should have a display property set to flex. testString: assert($('.profile-name').css('display') == 'flex'); - text: Your .follow-btn should have a display property set to flex. testString: assert($('.follow-btn').css('display') == 'flex'); - text: Your .stats should have a display property set to flex. testString: assert($('.stats').css('display') == 'flex'); ```
## Challenge Seed
```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
```
## Solution
```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
```