--- id: 587d78ac367417b2b2512af7 title: Use the justify-content Property in the Tweet Embed challengeType: 0 videoUrl: '' localeTitle: 在Tweet Embed中使用justify-content属性 --- ## Description
最后一项挑战展示了一个justify-content属性的例子。对于tweet嵌入,可以应用此属性来对齐.profile-name元素中的项目。
## Instructions
将CSS属性justify-content添加到标头的.profile-name元素,并将值设置为上一个挑战中的任何选项。
## Tests
```yml tests: - text: .profile-name元素应将justify-content属性设置为以下任何值:center,flex-start,flex-end,space-between或space-around。 testString: 'assert(code.match(/header\s.profile-name\s*{\s*?.*?\s*?.*?\s*?\s*?.*?\s*?justify-content\s*:\s*(center|flex-start|flex-end|space-between|space-around)\s*;/g), "The .profile-name element should have the justify-content property set to any of these values: center, flex-start, flex-end, space-between, or space-around.");' ```
## 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 ```