nowrap: Every item is fit to a single line.wrap: Items wrap around to additional lines.wrap-reverse: Items wrap around to additional lines in reverse.
The two propertiesflex-directionandflex-wrapare used so often together that the shorthand propertyflex-flowwas created to combine them. This shorthand property accepts the value of the two properties separated by a space.For example, you can use
flex-flow: row wrapto set rows and wrap them.Try using
flex-flowto repeat the previous level.