2.6 KiB
2.6 KiB
id, challengeType, videoUrl, forumTopicId, title
id | challengeType | videoUrl | forumTopicId | title |
---|---|---|---|---|
587d78ae367417b2b2512afe | 0 | https://scrimba.com/p/pVaDAv/cbpW2tE | 301112 | 使用 flex 短方法属性 |
Description
flex-grow
、flex-shrink
和flex-basis
属性可以在flex
中一同设置。
例如,flex: 1 0 10px;
会把项目属性设为flex-grow: 1;
、flex-shrink: 0;
以及flex-basis: 10px;
。
属性的默认设置是flex: 0 1 auto;
。
Instructions
#box-1
和#box-2
添加flex
属性。为#box-1
设置flex-grow
属性值为 2
,flex-shrink
属性值为 2
,flex-basis
属性值为 150px
。为#box-2
设置flex-grow
属性值为 1
,flex-shrink
属性值为 1
,flex-basis
属性值为 150px
。
通过上面的设置,在容器大于 300px 时,#box-1
扩大的空间是#box-2
扩大空间的两倍;在容器小于 300px 时,#box-1
缩小的空间#box-2
缩小空间的两倍。300px 是两个盒子的flex-basis
的值之和。
Tests
tests:
- text: <code>#box-1</code>元素应有<code>flex</code>属性,其值应为 <code>2 2 150px</code>。
testString: assert($('#box-1').css('flex-grow') == '2' && $('#box-1').css('flex-shrink') == '2' && $('#box-1').css('flex-basis') == '150px');
- text: <code>#box-2</code>元素应有<code>flex</code>属性,其值应为 <code>1 1 150px</code>。
testString: assert($('#box-2').css('flex-grow') == '1' && $('#box-2').css('flex-shrink') == '1' && $('#box-2').css('flex-basis') == '150px');
- text: <code>#box-1</code>和<code>#box-2</code>应具有<code>flex</code>属性。
testString: assert(code.match(/flex:\s*?\d\s+?\d\s+?150px;/g).length == 2);
Challenge Seed
<style>
#box-container {
display: flex;
height: 500px;
}
#box-1 {
background-color: dodgerblue;
height: 200px;
}
#box-2 {
background-color: orangered;
height: 200px;
}
</style>
<div id="box-container">
<div id="box-1"></div>
<div id="box-2"></div>
</div>
Solution
// solution required