Suggest an editImprove this articleRefine the answer for “What does flex-flow do?”. Your changes go to moderation before they’re published.Approval requiredContentWhat you’re changing🇺🇸EN🇺🇦UAPreviewTitle (EN)Short answer (EN)**`flex-flow`** is a shorthand property that combines `flex-direction` and `flex-wrap` into one declaration. **Key point:** `flex-flow: row wrap;` is equivalent to `flex-direction: row; flex-wrap: wrap;`.Shown above the full answer for quick recall.Answer (EN)Image`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; ```For the reviewerNote to the moderator (optional)Visible only to the moderator. Helps review go faster.