JavaScript 参考手册
Style flexShrink 属性
让蓝色的 DIV 元素收缩到其他灵活项目的五分之一
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>蜜蜂教程(mifengjc.com)</title> <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> <script> function myFunction() { document.getElementById("myBlueDiv").style.flexShrink = "5"; } </script> <p><b>注意:</b>Internet Explorer 和 Safari 不支持 flexShrink 属性。</p> </body> </html>
运行结果:
点击运行 »