handleman
9/3/2015 - 10:14 AM

By default, flex items will all try to fit onto one line. You can change that and allow the items to wrap as needed with this property. Dire

By default, flex items will all try to fit onto one line. You can change that and allow the items to wrap as needed with this property. Direction also plays a role here, determining the direction new lines are stacked in.

.container{
  flex-wrap: nowrap | wrap | wrap-reverse;
}