CSSflex-wrap Property
Example
Make the flexible items wrap if necessary:
display: flex;
flex-wrap: wrap;
}
Definition and Usage
Theflex-wrap property specifies whether the flexible items should wrap or not.
Note: If the elements are not flexible items, theflex-wrap property has no effect.
| Default value: | nowrap |
|---|---|
| Inherited: | no |
| Animatable: | no.Read aboutanimatable |
| Version: | CSS3 |
| JavaScript syntax: | object.style.flexWrap="nowrap"Try it |
Browser Support
The numbers in the table specify the first browser version that fully supports the property.
| Property | |||||
|---|---|---|---|---|---|
| flex-wrap | 29 | 11 | 28 | 9 | 17 |
CSS Syntax
Property Values
| Value | Description | Play it |
|---|---|---|
| nowrap | Default value. Specifies that the flexible items will not wrap | Demo ❯ |
| wrap | Specifies that the flexible items will wrap if necessary | Demo ❯ |
| wrap-reverse | Specifies that the flexible items will wrap, if necessary, in reverse order | Demo ❯ |
| initial | Sets this property to its default value.Read aboutinitial | |
| inherit | Inherits this property from its parent element.Read aboutinherit |
Related Pages
CSS Tutorial:CSS Flexible Box
CSS Reference:flex property
CSS Reference:flex-flow property
CSS Reference:flex-direction property
CSS Reference:flex-basis property
CSS Reference:flex-grow property
CSS Reference:flex-shrink property
HTML DOM reference:flexWrap property

