flexbox align text code example
Example 1: css flex center
display: flex;
align-items: center;
justify-content: center;
Example 2: css flex vertical align
.box {
display: flex;
align-items: center;
justify-content: center;
}
.box div {
width: 100px;
height: 100px;
}
Example 3: how center content in css by using flex
display: flex;
width: 60%;
justify-content: center;
margin: 0 auto;
Example 4: flex align top css
align-items: flex-start | flex-end | center | baseline | stretch
.container {
display: flex;
align-items: flex-start;
}