css.properties

flex-wrap

The flex-wrap property specifies whether flex items wrap to multiple lines.

Formal Syntax

nowrap | wrap | wrap-reverse

See specification

JavaScript Access

// Access via element.style
element.style.flexWrap = 'nowrap';

Browser Support

standard | MDN ยท Spec

FeatureChromeFirefoxSafariEdge
flex-wrap2928912
nowrap2128712
wrap2128712
wrap-reverse2128712

Related Properties