You are here : cssCSS 3flex-wrap

flex-wrap - CSS 3

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.


Syntax

flex-wrap: nowrap|wrap|wrap-reverse|initial|inherit;


Example

div {    display: -webkit-flex; /* Safari */    
	-webkit-flex-wrap: wrap; /* Safari 6.1+ */   
	display: flex;       flex-wrap: wrap;}


Output / Return Value


Limitations


Alternatives / See Also


Reference