--- id: 587d78ac367417b2b2512af5 title: Apply the flex-direction Property to Create a Column in the Tweet Embed challengeType: 0 videoUrl: '' localeTitle: Aplicar a propriedade flex-direction para criar uma coluna no Tweet Embed --- ## Description
O header e footer incorporados pelo tweet usavam a propriedade flex-direction anteriormente com um valor de linha. Da mesma forma, os itens dentro do elemento .profile-name funcionariam bem empilhados como uma coluna.
## Instructions
Adicione o flex-direction propriedade CSS ao elemento .profile-name do cabeƧalho e defina o valor como column.
## Tests
```yml tests: - text: O elemento .profile-name deve ter uma propriedade de flex-direction definida como column. testString: 'assert($(".profile-name").css("flex-direction") == "column", "The .profile-name element should have a flex-direction property set to column.");' ```
## 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
```js // solution required ```