css.properties

flex-direction

The flex-direction property specifies the direction of flex items.

Formal Syntax

row | row-reverse | column | column-reverse

See specification

JavaScript Access

// Access via element.style
element.style.flexDirection = 'row';

Browser Support

standard | MDN ยท Spec

FeatureChromeFirefoxSafariEdge
flex-direction2922912
column2122712
column-reverse2181712
row2122712
row-reverse2181712

Related Properties