CSS: flex-direction
By Xah Lee. Date: . Last updated: .
flex-direction
- CSS property
flex-direction is for Flexbox container.
- It specify the direction of the flow.
flex-direction: row;
-
default. left to right
flex-direction: row-reverse;
-
right to left
flex-direction: column;
-
top to bottom
flex-direction: column-reverse;
-
bottom to top