Flex Direction

flex direction

inline

  • Establishes the main-axis and defines the direction flex items are placed in the flex container

  • Determines whether the flex items are layed out as either horizontal rows or vertical columns


.container {
  flex-direction: row | row-reverse | column | column-reverse;
}

inline

inline