--- id: 587d78ac367417b2b2512af5 title: Apply the flex-direction Property to Create a Column in the Tweet Embed challengeType: 0 videoUrl: '' localeTitle: 应用flex-direction属性在Tweet Embed中创建一个列 --- ## Description
tweet嵌入headerfooter先前使用了flex-direction属性和行值。同样, .profile-name元素中的项目可以很好地堆叠为列。
## Instructions
将CSS属性flex-direction添加到标头的.profile-name元素,并将值设置为column。
## Tests
```yml tests: - text: .profile-name元素应将flex-direction属性设置为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 ```