align div to center of screen code example
Example 1: center a div in css
.container {
display: flex;
justify-content: center;
align-items: center;
}
Example 2: align div to center of screen
div.the-center-div {
margin: 0 auto;
}
Example 3: how to center text in css
.class {
text-align: center;
}
Example 4: center a div on screen
.class{
position: realtive;
text-align: center;
top: 50%;
transform:translateY(-50%);
}