--- id: 587d78ac367417b2b2512af5 title: Apply the flex-direction Property to Create a Column in the Tweet Embed 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-- The tweet embed `header` and `footer` used the `flex-direction` property earlier with a row value. Similarly, the items inside the `.profile-name` element would work well stacked as a column. # --instructions-- Add the CSS property `flex-direction` to the header's `.profile-name` element and set the value to `column`. # --hints-- Your `.follow-btn` should be rendered on the page. Be sure to turn off any extensions such as ad blockers. ```js assert($('.follow-btn').length > 0 && $('.follow-btn').css('display') !== 'none'); ``` The `.profile-name` element should have a `flex-direction` property set to `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
```