Flex With Flexbox

The flex-direction property defines in which direction the container wants to stack the flex items.

flow-direction: row

Item 1
Item 2
Item 3
Item 4
Item 5

flow-direction: row-reverse

Item 1
Item 2
Item 3
Item 4
Item 5

flow-direction: column

Item 1
Item 2
Item 3
Item 4
Item 5

flow-direction: column-reverse

Item 1
Item 2
Item 3
Item 4
Item 5