css cemter o,age code example
Example 1: css align center vertical and horizontal
.parent-class {
display: flex;
align-items: center;
justify-content: space-around;
}
Example 2: html center body
body {
max-width: max-content;
margin: auto;
}