Suggest an editImprove this articleRefine the answer for “What does the flex-wrap property do?”. Your changes go to moderation before they’re published.Approval requiredContentWhat you’re changing🇺🇸EN🇺🇦UAPreviewTitle (EN)Short answer (EN)**`flex-wrap`** controls whether flex items wrap onto a new row (or column) if they do not fit inside the container. **Key point:** `nowrap` disables wrapping, `wrap` wraps items onto the next line, and `wrap-reverse` wraps in the reverse direction.Shown above the full answer for quick recall.Answer (EN)Image`flex-wrap` controls whether flex items wrap onto a new row (or column) if they do not fit inside the container. Options: ```javascript flex-wrap: nowrap; /* all items in one line, wrapping is disabled */ flex-wrap: wrap; /* items wrap onto the next line */ flex-wrap: wrap-reverse; /* wrapping in the reverse direction */ ```For the reviewerNote to the moderator (optional)Visible only to the moderator. Helps review go faster.