--- id: 587d78ab367417b2b2512af3 title: Apply the flex-direction Property to Create Rows in the Tweet Embed challengeType: 0 videoUrl: '' localeTitle: Aplicar a propriedade flex-direction para criar linhas no Tweet Incorporar --- ## Descrição
O header e o footer do exemplo de incorporação de tweets possuem itens-filhos que poderiam ser organizados como linhas usando a propriedade flex-direction . Isso informa ao CSS que alinhe os filhos horizontalmente.
## Instruções
Adicione a propriedade CSS flex-direction ao header e ao footer e defina o valor como *row*.
## Testes
```yml tests: - text: O header deve ter uma propriedade de flex-direction definida como linha. testString: 'assert(code.match(/header\s*?{[^}]*?flex-direction:\s*?row;/g), "The header should have a flex-direction property set to row.");' - text: O footer deve ter uma propriedade de flex-direction definida para linha. testString: 'assert(code.match(/footer\s*?{[^}]*?flex-direction:\s*?row;/g), "The footer should have a flex-direction property set to row.");' ```
## Desafio 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
```
## Solução
```js // Solução necessária ```