how to make a div in center of screen in css code example
Example 1: center div in middle of page
.centered {
position: fixed;
top: 50%;
left: 50%;
/* bring your own prefixes */
transform: translate(-50%, -50%);
}
Example 2: center text in css
.class {
text-align: center;
}