Skip to main content

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 ready
Premium

A concise answer to help you respond confidently on this topic during an interview.

What does flex-flow do?: CSS Interview Question