how to center an element in a 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
margin:auto
.container {
display: flex;
justify-content: center;
align-items: center;
}
margin:auto