justify-content flex start code example
Example 1: css flex center
display: flex;
align-items: center;
justify-content: center;
Example 2: space between flexbox
justify-content: space-between;
Example 3: flex css end
.item {
align-self:flex-start | flex-end | center | baseline | stretch;
}