2.1 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			2.1 KiB
		
	
	
	
	
	
	
	
id, title, challengeType, videoUrl, localeTitle
| id | title | challengeType | videoUrl | localeTitle | 
|---|---|---|---|---|
| 587d78ad367417b2b2512afb | Use the flex-shrink Property to Shrink Items | 0 | 使用flex-shrink属性收缩项目 | 
Description
flex-shrink属性。当它被使用时,如果柔性容器太小,它允许物品收缩。当父容器的宽度小于其中所有flex项的组合宽度时,项会收缩。 flex-shrink属性将数字作为值。数字越大,与容器中的其他项目相比,它将收缩得越多。例如,如果一个项目的flex-shrink值为1而另一个项目的flex-shrink值为3,则值为3的项目将缩小为另一个项目的三倍。 Instructions
flex-shrink添加到#box-1和#box-2 。将#box-1的值设为1,将#box-2的值设为2。 Tests
tests:
  - text: '<code>#box-1</code>元素应将<code>flex-shrink</code>属性设置为值1。'
    testString: 'assert($("#box-1").css("flex-shrink") == "1", "The <code>#box-1</code> element should have the <code>flex-shrink</code> property set to a value of 1.");'
  - text: '<code>#box-2</code>元素的<code>flex-shrink</code>属性应设置为值2。'
    testString: 'assert($("#box-2").css("flex-shrink") == "2", "The <code>#box-2</code> element should have the <code>flex-shrink</code> property set to a value of 2.");'
Challenge Seed
<style>
  #box-container {
    display: flex;
    height: 500px;
  }
  #box-1 {
    background-color: dodgerblue;
    width: 100%;
    height: 200px;
  }
  #box-2 {
    background-color: orangered;
    width: 100%;
    height: 200px;
  }
</style>
<div id="box-container">
  <div id="box-1"></div>
  <div id="box-2"></div>
</div>
Solution
// solution required