CSS property: -webkit-box-orient

Description

Specifies the layout of elements nested within a flexible box element.

This property applies only to flexible box layouts. For more information about flexible boxes, see http://www.w3.org/TR/css3-layout/.

Syntax

-webkit-box-orient: <orientation>;

Values

<orientation>

The orientation of elements nested in the flexible box.

block-axisElements are oriented along the box's axis.
horizontalElements are oriented horizontally.
inline-axisElements are oriented along the inline axis.
verticalElements are oriented vertically.

Versions