Answers for "flexbox directions"

0

flexbox directions

/* 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;
Posted by: Guest on July-08-2021

Browse Popular Code Answers by Language