![]() |
VOOZH | about |
The flex-flow property is a sub-property of the flexible box layout module and also a shorthand property for flex-wrap and flex-direction.
Note:
The flex property is useless when the element is not a flexible item.
flex-flow: flex-direction flex-wrap;row nowrap: It arranges the row the same as the text direction and the default value of wrap-flex is nowrap. It is used to specify that the item has no wrap. It makes item wrap in single lines. Syntax:
flex-flow: row nowrap; Example:Output:👁 Imagerow-reverse nowrap: It arrange the row opposite of text direction and the default value of wrap-flex is nowrap. It is used to specify that the item has no wrap. It makes item wrap in single lines. Syntax:
flex-flow: row-reverse nowrap; Example:Output:👁 Imagecolumn nowrap: same as row but top to bottom and the default value of wrap-flex is nowrap. It is used to specify that the item has no wrap. It makes item wrap in single lines. Syntax:
flex-flow: column nowrap; Example:Output:👁 Imagecolumn-reverse nowrap: Same as row-reverse top to bottom and the default value of wrap-flex is nowrap. It is used to specify that the item has no wrap. It makes item wrap in single lines. Syntax:
flex-flow: column-reverse nowrap; Example:Output:👁 Imagerow wrap: It arrange the row same as text direction and wrap property is used to break the flex item into multiples lines. It makes flex items wrap to multiple lines according to flex item width Syntax:
flex-flow: row wrap; Example:Output:👁 Imagerow-reverse wrap: It arrange the row opposite of text direction and wrap property is used to reverse the flow of the flex items when they wrap to new lines. Syntax:
flex-flow: row-reverse wrap; Example:Output:👁 Imagecolumn wrap: It arrange the row same as row but top to bottom and wrap property is used to reverse the flow of the flex items when they wrap to new lines. Syntax:
flex-flow:column wrap; Example:Output:👁 Imagecolumn-reverse wrap: It arrange the row same as row-reverse top to bottom. and wrap property is used to reverse the flow of the flex items when they wrap to new lines. Syntax:
flex-flow:column-reverse wrap; Example:Output:👁 Imagerow wrap-reverse: It arrange the row same as text direction and wrap-reverse property This property is used to reverse the flow of the flex items when they wrap to new lines. Syntax:
flex-flow:row wrap-reverse; Example:Output:👁 Imagerow-reverse wrap-reverse: It arrange the row opposite text direction and wrap-reverse property This property is used to reverse the flow of the flex items when they wrap to new lines. Syntax:
flex-flow:row-reverse wrap-reverse; Example:Output:👁 Imagecolumn wrap-reverse: It arrange the row same as row but top to bottom.and wrap-reverse property This property is used to reverse the flow of the flex items when they wrap to new lines. Syntax:
flex-flow:column wrap-reverse; Example:Output:👁 Imagecolumn-reverse wrap-reverse: It arrange the row same as row-reverse top to bottom and wrap-reverse property This property is used to reverse the flow of the flex items when they wrap to new lines. Syntax:
flex-flow:column-reverse wrap-reverse; Example:Output:👁 Image