align text center veritcally in css code example
Example 1: css align items vertical center
.parent {
display: flex;
justify-content: center;
align-items: center;
}
Example 2: css text align center
body {
text-align: center;
}
.parent {
display: flex;
justify-content: center;
align-items: center;
}
body {
text-align: center;
}