#box-container {
display: flex;
height: 500px;
}
#box-1 {
background-color: dodgerblue;
height: 200px;
flex-grow:1;
flex-shrink:2;
}
#box-2 {
background-color: orangered;
height: 200px;
flex-grow:2;
flex-shrink:4;
flex-basis:200px;
<div id="box-container">
<div id="box-1"></div>
<div id="box-2"></div>
</div>
您好,有人可以解释一下为什么在这里flex-shrink不起作用吗?我一直在尝试更改值,但似乎没有任何变化。我很确定没有错字。预先感谢。