full page vertical center html css template code example
Example 1: css vertical center
/* No Flexbox */
.parent {
position: relative;
}
.child {
position: absolute;
top: 50%;
transform: translateY(-50%);
}
/* With Flexbox */
.parent {
display: flex;
flex-direction: column;
justify-content: center;
}
Example 2: html center body
body {
display:flex; flex-direction:column; justify-content:center;
min-height:100vh;
}