--- id: 587d78ab367417b2b2512af1 title: Add Flex Superpowers to the Tweet Embed challengeType: 0 videoUrl: 'https://scrimba.com/p/pVaDAv/c9W7MhM' forumTopicId: 301100 localeTitle: 在推文中添加弹性盒子布局 --- ## Description
我们以右边的嵌入推文为例。一些元素换一个布局方式或许更好看。上一个挑战演示了display: flex,现在你需要把它添加到推文内嵌的多个组件中,调整它们的位置。
## Instructions
为下列项目添加 CSS 属性display: flex。注意,CSS 选择器已写好: header、header 的.profile-name、header 的.follow-btn、header 的h3h4footer以及 footer 的.stats
## Tests
```yml tests: - text: headerdisplay属性应为 flex。 testString: assert($('header').css('display') == 'flex'); - text: footerdisplay属性应为 flex。 testString: assert($('footer').css('display') == 'flex'); - text: h3display属性应为 flex。 testString: assert($('h3').css('display') == 'flex'); - text: h4display属性应为 flex。 testString: assert($('h4').css('display') == 'flex'); - text: .profile-namedisplay属性应为 flex。 testString: assert($('.profile-name').css('display') == 'flex'); - text: .follow-btndisplay属性应为 flex。 testString: assert($('.follow-btn').css('display') == 'flex'); - text: .statsdisplay属性应为 flex。 testString: assert($('.stats').css('display') == 'flex'); ```
## 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 ```