A Sane(ish) Standard For Layout and Positioning
Rules for Containers
.container {
display: flex;
}
//Or
.container {
display: inline-flex;
}.container {
display: flex;
flex-direction: row | row-reverse | column | column-reverse;
}
Specifies Order and Direction of Children
Rules for Contained Elements