--- id: 587d78ac367417b2b2512af5 title: Usar a propriedade flex-direction para criar uma coluna no Tweet Embed 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-- Anteriormente, os elementos `header` e `footer` do tweet usaram a propriedade `flex-direction` para posicionar os flex items horizontalmente. Da mesma forma, os itens dentro do elemento de classe `.profile-name` funcionariam bem empilhados como uma coluna. # --instructions-- Adicione a propriedade `flex-direction` com o valor de `column` no elemento de classe `.profile-name`. # --hints-- O elemento de classe `.follow-btn` deve ser renderizado na página. Lembre-se de desativar as extensões que bloqueiam anúncios. ```js assert($('.follow-btn').length > 0 && $('.follow-btn').css('display') !== 'none'); ``` O elemento de classe `.profile-name` deve possuir a propriedade `flex-direction` com o valor de `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
```