--- id: 587d78ab367417b2b2512af3 title: Usar a propriedade flex-direction para criar linhas no Tweet Embed challengeType: 0 videoUrl: 'https://scrimba.com/p/pVaDAv/cJb8yuq' forumTopicId: 301104 dashedName: apply-the-flex-direction-property-to-create-rows-in-the-tweet-embed --- # --description-- Os elementos `header` e `footer` no exemplo do tweet possuem itens filhos que podem ser posicionados em linhas usando a propriedade `flex-direction`. Você vai usar essa propriedade para dizer ao CSS para alinhar os flex items horizontalmente. # --instructions-- Adicione a propriedade `flex-direction` com o valor de `row` em ambos os elementos `header` e `footer`. # --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 `header` deve possuir a propriedade `flex-direction` com o valor de `row`. ```js assert(code.match(/header\s*?{[^}]*?flex-direction:\s*?row;/g)); ``` O elemento `footer` deve possuir a propriedade `flex-direction` com o valor de `row`. ```js assert(code.match(/footer\s*?{[^}]*?flex-direction:\s*?row;/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
```