©
Dieses Dokument verwendet PHP-Handbuch für chinesische Websites Freigeben
box-ordinal-group:<integer>
默认值:1
适用于:伸缩盒子元素
继承性:无
动画性:否
计算值:指定值
<integer>:用整数值来定义伸缩盒对象的子元素显示顺序。
效果等同于过渡版本的flex-order属性和新版本的order属性;
数值较低的元素显示在数值较高的元素前面;
相同数值的元素,它们的显示顺序取决于它们的代码顺序;
对应的脚本特性为boxOrdinalGroup。
Values | IE | Firefox | Chrome | Safari | Opera | iOS Safari | Android Browser | Android Chrome |
---|---|---|---|---|---|---|---|---|
Basic Support | 6.0-11.0 | 2.0-40.0-moz- | 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- |
<!DOCTYPE html> <html lang="zh-cmn-Hans"> <head> <meta charset="utf-8" /> <title>box-ordinal-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{padding:20px;} .box li:nth-child(1){-webkit-box-ordinal-group:3;-moz-box-ordinal-group:3;-ms-box-ordinal-group:3;background:#666;} .box li:nth-child(2){background:#999;} .box li:nth-child(3){background:#ccc;} </style> </head> <body> <h1>box-radinal-group</h1> <ul id="box" class="box"> <li>a</li> <li>b</li> <li>c</li> </ul> </body> </html>
点击 "运行实例" 按钮查看在线实例