flex-flow - CSS 3
The flex-flow property is a shorthand property for the flex-direction and the flex-wrap properties.The flex-direction property specifies the direction of the flexible items.The flex-wrap property specifies whether the flexible items should wrap or not.Note: If the elements are not flexible items, the flex-flow property has no effect.
Syntax
flex-flow: flex-direction flex-wrap|initial|inherit;
Example
div { display: -webkit-flex; /* Safari */
-webkit-flex-flow: row-reverse wrap; /* Safari 6.1+ */
display: flex; flex-flow: row-reverse wrap;}
Output / Return Value
Limitations
Alternatives / See Also
Reference