display: flex
,现在你需要把它添加到推文内嵌的多个组件中,调整它们的位置。
display: flex
。注意,CSS 选择器已写好:
header
、header 的.profile-name
、header 的.follow-btn
、header 的h3
和h4
、footer
以及 footer 的.stats
。
header
的display
属性应为 flex
。
testString: assert($('header').css('display') == 'flex');
- text: footer
的display
属性应为 flex
。
testString: assert($('footer').css('display') == 'flex');
- text: h3
的display
属性应为 flex
。
testString: assert($('h3').css('display') == 'flex');
- text: h4
的display
属性应为 flex
。
testString: assert($('h4').css('display') == 'flex');
- text: .profile-name
的display
属性应为 flex
。
testString: assert($('.profile-name').css('display') == 'flex');
- text: .follow-btn
的display
属性应为 flex
。
testString: assert($('.follow-btn').css('display') == 'flex');
- text: .stats
的display
属性应为 flex
。
testString: assert($('.stats').css('display') == 'flex');
```
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