CSS3 box-direction 属性

我要月亮奔我而来

CSS3 box-direction 属性


由右至左,显示一个div box的子元素:

div
{
width:350px;
height:100px;
border:1px solid black;

/* Internet Explorer 10 */
display:-ms-flexbox;
-ms-flex-direction:row-reverse;

/* Firefox */
display:-moz-box;
-moz-box-direction:reverse;

/* Safari, Opera, and Chrome */
display:-webkit-box;
-webkit-box-direction:reverse;

/* W3C */
display:box;
box-direction:reverse;
}

浏览器支持

CSS3 box-direction 属性CSS3 box-direction 属性CSS3 box-direction 属性CSS3 box-direction 属性CSS3 box-direction 属性

目前主流浏览器不支持 box-direction 属性。

Internet Explorer 10通过私有属性 the -ms-flex-direction 支持.

Firefox通过私有属性- MOZ-box-direction支持。

Safari和Chrome通过私有属性-WebKit-box-direction属性。

注意: Internet Explorer 9及更早IE版本不支持弹性框.


属性定义及使用说明

box-direction属性指定显示哪个方向的box的子元素。

默认值: normal
继承性: no
版本: CSS3
JavaScript 语法: object.style.boxDirection="reverse"


语法

box-direction: normal|reverse|inherit;

描述
normal 以默认方向显示子元素。
reverse 以反方向显示子元素。
inherit 应该从子元素继承 box-direction 属性的值
版权声明:本页面内容旨在传播知识,为用户自行发布,若有侵权等问题请及时与本网联系,我们将第一时间处理。E-mail:284563525@qq.com

目录[+]

取消
微信二维码
微信二维码
支付宝二维码