left div horizontally and vertically html code example
Example 1: css align center vertical and horizontal
.parent-class {
display: flex;
align-items: center;
justify-content: space-around;
}
Example 2: center css elements
body{
display: grid;
place-items: center;
}