Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

flex-flow

/* Flex-flow combines flex-wrap and flex-direction because they were used 
together so often, and devs wanted to simplify it.*/

/*Normal*/

* {
flex-direction: column-reverse;
flex-wrap: wrap;
}

/*Flex-flow*/

* {
flex-flow: column-reverse wrap;
}
 
PREVIOUS NEXT
Tagged:
ADD COMMENT
Topic
Name
4+1 =