css flexbox center vertically and horizontally code example
Example 1: css flex center horizontally and vertically
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: flexbox align center vertically
.Aligner {
display: flex;
align-items: center;
justify-content: center;
}
.Aligner-item {
max-width: 50%;
}
.Aligner-item--top {
align-self: flex-start;
}
.Aligner-item--bottom {
align-self: flex-end;
}
Example 4: centering with flexbox
justify-content: center;
align-items: center;
Example 5: how center content in css by using flex
display: flex;
width: 60%;
justify-content: center;
margin: 0 auto;