flex-wrap
A property that specifies if elements will occupy multiple lines and the direction in which the items are distributed.
Syntax
#element-container {display: flex;flex-wrap: <wrap-value>;}
The <wrap-value>
can be one of three options:
wrap
nowrap
wrap-reverse
Example 1
Content that does not utilize multiple lines:
#spam-container {display: flex;flex-direction: row;flex-wrap: nowrap;}