how to align body in center in css code example
Example 1: center a div in css
.container {
display: flex;
justify-content: center;
align-items: center;
}
Example 2: html center body
body {
max-width: max-content;
margin: auto;
}
.container {
display: flex;
justify-content: center;
align-items: center;
}
body {
max-width: max-content;
margin: auto;
}