div block center center code example
Example 1: center a div in css
.container {
display: flex;
justify-content: center;
align-items: center;
}
Example 2: center a cpontent css
.center_me {
display: flex;
justify-content: center;
align-items: center;
}