--- id: 587d78ac367417b2b2512af5 title: Apply the flex-direction Property to Create a Column in the Tweet Embed challengeType: 0 videoUrl: '' localeTitle: Aplique la propiedad de dirección flexible para crear una columna en la inserción de tweets --- ## Description
El header y el footer la flex-direction tweet usaron la propiedad de flex-direction anteriormente con un valor de fila. De manera similar, los elementos dentro del elemento .profile-name funcionarán bien apilados como una columna.
## Instructions
Agregue la propiedad CSS flex-direction al elemento .profile-name del encabezado y establezca el valor en columna.
## Tests
```yml tests: - text: El elemento .profile-name debe tener una propiedad de flex-direction configurada en columna. 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 ```