CSS Box-Orient Property
CSS 1 |
CSS 2 |
CSS 3 |
|
|
|
|
Description
Specifies whether a box lays out its contents horizontally or vertically.
Syntax
box-orient: [value];
Possible values
- horizontal
- vertical
- inline-axis
- block-axis
Initial Value
inline-axis
Applies To
Box elements
Inherited
No
Media
Visual
Example
.class {
box-orient: vertical;
}