align in column flexbox code example
Example 1: display flex column
.container {
display: flex;
flex-direction: column;
}
Example 2: flex box align items
.container {
justify-items: center;
}
.container {
display: flex;
flex-direction: column;
}
.container {
justify-items: center;
}