how to center div class code example
Example 1: center a div in css
.container {
display: flex;
justify-content: center;
align-items: center;
}
Example 2: how to horizontal center a div in css
#inner {
width: 50%;
margin: 0 auto;
}
.container {
display: flex;
justify-content: center;
align-items: center;
}
#inner {
width: 50%;
margin: 0 auto;
}