how to move a div to center of screen css code example
Example 1: align div to center of screen
div.the-center-div {
margin: 0 auto;
}
Example 2: center a div on screen
.class{
position: realtive;
text-align: center;
top: 50%;
transform:translateY(-50%);
}