flex display flex code example
Example 1: display flex column
.container {
display: flex;
flex-direction: column;
}
Example 2: css flex
.container {
justify-content: flex-start | flex-end | center | space-between | space-around | space-evenly | start | end | left | right ... + safe | unsafe;
}