box-direction property
Author admin Reading 1 min Views 386 Published by Modified by
Definition and Usage
The box-direction property specifies the direction in which child elements of a box element are laid out.
| Default value: | normal |
| Inherited: | no |
| Version: | CSS3 |
| JavaScript syntax: | object.style.boxDirection=”reverse” |
Syntax
box-direction: normal|reverse|inherit;
Values
| Value | Description |
| normal | Display the child elements in the default direction |
| reverse | Display the child elements in the reverse direction |
| inherit | The value of the box-direction property should be inherited from the parent element |
Examples
04 | border:1px solid black; |
07 | -ms-flex-direction:row-reverse; |
10 | -moz-box-direction:reverse; |
13 | -webkit-box-direction:reverse; |
16 | box-direction:reverse; |