changing orientation of contaiers in flexbox code example
Example 1: flex box css
.container {
flex-direction: row | row-reverse | column | column-reverse;
}
Example 2: display flex css
.class {
display: flex;
}
/* use display: flex to turn CSS element into a flexbox */