The flex-wrap property specifies whether the flexible items should wrap or not.Note: If the elements are not flexible items, the flex-wrap property has no effect.
flex-wrap: nowrap|wrap|wrap-reverse|initial|inherit;
div { display: -webkit-flex; /* Safari */ -webkit-flex-wrap: wrap; /* Safari 6.1+ */ display: flex; flex-wrap: wrap;}