flex-wrap Property
wrap_text
Controls whether flex items wrap to multiple lines
view_stream
nowrap: All items stay on one line (default)
view_column
wrap: Items wrap to new lines when needed
view_column
wrap-reverse: Items wrap in reverse order
code
flex-wrap Examples
.container {
display: flex;
flex-wrap: wrap;
}
.no-wrap-container {
display: flex;
flex-wrap: nowrap;
}