The flex-wrap
property in
There is no effect of this property on non-flexible items.
flex-wrap: nowrap|wrap|wrap-reverse|initial|inherit;
nowrap
: This is the default value. It’s used to specify that the flex items don’t wrap.
wrap
: This identifies whether a flex item should wrap or not.
wrap-reverse
: This specifies whether it is necessary that a flex item should wrap, and if it is, that the flex item should wrap in the reverse order.
initial
: This sets the value to its default value.
inherit
: This inherits the property from its parent value.
The basic flex-wrap
property is as follows:
In this example, we can see that we have set the property of flex-wrap
to wrap
.
The third box is in the next line because we have set the property to wrap
.
As a result of this, flex items are wrapped onto multiple lines. Otherwise, they are forced onto a single line.