how to center something with css box code example
Example 1: center a div in css
.container {
display: flex;
justify-content: center;
align-items: center;
}
Example 2: how to center a div
.container {
...
display: flex;
justify-content: center;
}