Flex With Flexbox
The flex-direction property defines in which direction the container wants to stack the flex items.
flex-direction: row
Item 1
Item 2
Item 3
Item 4
Item 5
flex-direction: row-reverse
Item 1
Item 2
Item 3
Item 4
Item 5
flex-direction: column
Item 1
Item 2
Item 3
Item 4
Item 5
flex-direction: column-reverse
Item 1
Item 2
Item 3
Item 4
Item 5