<!DOCTYPE html>
<html>
<head>
<style>
#main {
width: 350px;
height: 100px;
border: 1px solid #c3c3c3;
display: flex;
}
#main div {
flex-grow: 1;
flex-shrink: 1;
flex-basis: 300px;
}
</style>
</head>
<body>
<div id="main">
<div style="background-color:coral;">红色 DIV</div>
<div style="background-color:lightblue;" id="myBlueDiv">蓝色 DIV</div>
</div>
<p>请点击“试一试”按钮,将蓝色 div 元素的 flexShrink 属性值设置为 “5”。</p>
<button onclick="myFunction()">试一试</button>
<p><b>注释:</b>Internet Explorer 10 及更早版本不支持 flexShrink 属性。</p>
<script>
function myFunction() {
document.getElementById("myBlueDiv").style.flexShrink = "5";
}
</script>
</body>
</html>