--- id: 587d78ac367417b2b2512af5 title: Aplica la propiedad flex-direction para crear columnas en el tweet insertado 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-- El `header` y `footer` del tweet insertado usaron previamente la propiedad `flex-direction` con un valor de fila. De manera similar, los elementos dentro del elemento `.profile-name` funcionarían bien apilados como una columna. # --instructions-- Agrega la propiedad CSS `flex-direction` al elemento `.profile-name` del título y establezca el valor en `column`. # --hints-- Tu `.follow-btn` debe mostrarse en la página. Asegúrate de desactivar las extensiones, como los bloqueadores de anuncios. ```js assert($('.follow-btn').length > 0 && $('.follow-btn').css('display') !== 'none'); ``` El elemento `.profile-name` debe tener una propiedad `flex-direction` establecida en `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
```