alighn text in center of div code example
Example 1: css align center vertical and horizontal
.parent-class {
display: flex;
align-items: center;
justify-content: space-around;
}
Example 2: how to center text in css
.class {
text-align: center;
}