Arah Flexbox

/* Main axis will flow from left to right */
flex-direction: row;

/* Main axis will flow from right to left */
flex-direction: row-reverse;

/* Main axis will flow from top to bottom */
flex-direction: column;

/* Main axis will flow from bottom to top */
flex-direction: column-reverse;
Happy Hedgehog