--- 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 localeTitle: 使用 flex-direction 在嵌入推文中创建一列 --- ## Description
在上一个挑战中,把嵌入推文的headerfooterflex-direction属性值设为 row(行)。相似地,把.profile-name选择器对应的元素竖着排列会好看一点。
## Instructions
在 header 的.profile-name元素添加 CSS 属性flex-direction,将其值设为 column。
## Tests
```yml tests: - text: '.profile-name应有flex-direction属性,其值应为 column。' testString: assert($('.profile-name').css('flex-direction') == '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
```html // solution required ```