css align div in the middle code example
Example 1: center text in css
.class {
text-align: center;
}
Example 2: html center body
body {
display:flex; flex-direction:column; justify-content:center;
min-height:100vh;
}
.class {
text-align: center;
}
body {
display:flex; flex-direction:column; justify-content:center;
min-height:100vh;
}