The flex-flow property is a shorthand property for the flex-wrap and the flex-direction properties.
Syntax:
selector {
flex-flow: flex-direction flex-wrap | initial |inherit;
}
Values:
- flex-direction - Defines the direction of a flexible item. Possible values are: row (default value), row-reverse, column, column-reverse, initial and inherit
- flex-wrap - Defines the wrapping technique of a flexible item. Possible items are: nowrap (default value, wrap, wrap-reverse, initial and inherit
- initial or inherit
Example
Example of flex-flow property with flex direction and flex wrap:
Comments
No comments have been made yet.
Please login to leave a comment. Login now