how to apply display flex code example
Example 1: display flex column
.container {
display: flex;
flex-direction: column;
}
Example 2: css all flex properties
.container {
align-content: flex-start | flex-end | center | space-between | space-around | space-evenly | stretch | start | end | baseline | first baseline | last baseline + ... safe | unsafe;
}