Flex and Grid in CSS
Flex
Cheat Sheet provide by CSS-tricks.com
display
.container {
display: flex;
}flex-direction
.container {
flex-direction: row | row-reverse | column | column-reverse;
}flex-direction
flex-warp
.container {
flex-wrap: nowrap | wrap | wrap-reverse;
}flex-wrap
flex-flow
This is a shorthand for the flex-direction and flex-wrap properties.




