What does flex-flow do?
flex-flow is a shorthand property that combines flex-direction + flex-wrap.
Example:
css
flex-flow: row wrap;Equivalent to:
css
flex-direction: row;
flex-wrap: wrap;Short Answer
Interview readyPremium
A concise answer to help you respond confidently on this topic during an interview.