The flex-direction property describes the direction of the flexible items.
Syntax:
selector {
flex-direction: row | row-reverse | column | column-reverse | initial | inherit;
}
Values:
- row - Default value. Displays flexible items horizontally
- row-reverse - Displays flexible items horizontally (equal to row) but in reversed order
- column - Displays flexible items vertically
- column-reverse - Displays flexible items vertically (equal to column) but in reversed order
- initial or inherit
Example
Example of flex-direction property with row and column values:
Comments
No comments have been made yet.
Please login to leave a comment. Login now