©
Ce document utilise Manuel du site Web PHP chinois Libérer
box-flex-group:<integer>
默认值:1
适用于:伸缩盒子元素
继承性:无
动画性:否
计算值:指定值
<integer>:用整数值来定义伸缩盒对象的子元素所在的组。
动态给数值较大的组分配其内容所需的实际空间(如无内容、padding、border则不占空间),剩余空间则均分给数值最小的那个组(可能有1个或多个元素)
对应的脚本特性为boxFlexGroup。
Values | IE | Firefox | Chrome | Safari | Opera | iOS Safari | Android Browser | Android Chrome |
---|---|---|---|---|---|---|---|---|
Basic Support | 6.0-11.0 | 2.0-40.0 | 4.0-45.0-webkit- | 6.0-8.0-webkit- | 15.0-29.0-webkit- | 6.0-8.3-webkit- | 2.1-4.4.4-webkit- | 18.0-42.0-webkit- |
<section id="bd"> <section id="syntax" class="g-mod g-attr"> <h2 class="tit">语法:</h2> <div class="cont"> <p><strong>box-flex-group</strong>:<a href="../../values/numeric/integer.htm"><integer></a></p> <p><strong>默认值</strong>:<mark class="defaultvalue">1</mark></p> <p><strong>适用于</strong>:伸缩盒子元素</p> <p><strong>继承性</strong>:无</p> <p><strong>动画性</strong>:否</p> <p><strong>计算值</strong>:指定值</p> </div> </section> <section id="value" class="g-mod g-attr"> <h2 class="tit">取值:</h2> <div class="cont"> <dl> <dt><a href="../../values/numeric/integer.htm"><integer></a>:</dt> <dd>用整数值来定义伸缩盒对象的子元素所在的组。</dd> </dl> </div> </section> <section id="intro" class="g-mod g-attr"> <h2 class="tit">说明:</h2> <div class="cont"> <strong>设置或检索伸缩盒对象的子元素的所属组。</strong> <ul> <li>动态给数值较大的组分配其内容所需的实际空间(如无内容、padding、border则不占空间),剩余空间则均分给数值最小的那个组(可能有1个或多个元素)</li> <li>对应的脚本特性为<strong>boxFlexGroup</strong>。</li> </ul> </div> </section> <section id="compatible" class="g-mod g-attr"> <h2 class="tit">兼容性:</h2> <div class="cont"> <ul class="support-type"> <li><span class="support">浅绿</span> = 支持</li> <li><span class="unsupport">红色</span> = 不支持</li> <li><span class="partsupport">粉色</span> = 部分支持</li> </ul> <table class="g-data"> <thead> <tr> <th>Values</th> <th>IE</th> <th>Firefox</th> <th>Chrome</th> <th>Safari</th> <th>Opera</th> <th>iOS Safari</th> <th>Android Browser</th> <th>Android Chrome</th> </tr> </thead> <tbody> <tr> <td><strong>Basic Support</strong></td> <td class="unsupport">6.0-11.0</td> <td class="unsupport">2.0-40.0</td> <td class="support">4.0-45.0<sup class="fix">-webkit-</sup></td> <td class="support">6.0-8.0<sup class="fix">-webkit-</sup></td> <td class="support">15.0-29.0<sup class="fix">-webkit-</sup></td> <td class="support">6.0-8.3<sup class="fix">-webkit-</sup></td> <td class="support">2.1-4.4.4<sup class="fix">-webkit-</sup></td> <td class="support">18.0-42.0<sup class="fix">-webkit-</sup></td> </tr> </tbody> </table> </div> </section> <section id="example" class="g-mod g-attr"> <h2 class="tit">示例:</h2> <div class="cont"> <textarea cols="90" rows="10"><!DOCTYPE html> <html lang="zh-cmn-Hans"> <head> <meta charset="utf-8" /> <title>box-flex-group_CSS参考手册_web前端开发参考手册系列</title> <meta name="author" content="Joy Du(飘零雾雨), dooyoe@gmail.com, www.doyoe.com" /> <style> h1{font:bold 20px/1.5 georgia,simsun,sans-serif;} .box{display:-webkit-box;display:-moz-box;display:-ms-box;background:#000;width:240px;height:100px;margin:0;padding:10px;list-style:none;vertical-align:top;} .box li:nth-child(1){-webkit-box-flex:1;-moz-box-flex:1;-ms-box-flex:1;-webkit-box-flex-group:1;-moz-box-flex-group:1;-ms-box-flex-group:1;background:#666;} .box li:nth-child(2){-webkit-box-flex:1;-moz-box-flex:1;-ms-box-flex:1;-webkit-box-flex-group:2;-moz-box-flex-group:2;-ms-box-flex-group:2;background:#999;} .box li:nth-child(3){-webkit-box-flex:1;-moz-box-flex:1;-ms-box-flex:1;-webkit-box-flex-group:1;-moz-box-flex-group:1;-ms-box-flex-group:1;background:#ccc;} </style> </head> <body> <h1>box-flex-group</h1> <ul id="box" class="box"> <li>a</li> <li>b</li> <li>c</li> </ul> </body> </html> </textarea> <p><input type="button" class="g-btn g-btn-sure" value="运行"><input type="button" class="g-btn g-btn-copy" value="复制"></p> </div> </section> </section>
点击 "运行实例" 按钮查看在线实例