how to center everything in a div css code example
Example 1: center a div in css
.container {
display: flex;
justify-content: center;
align-items: center;
}
Example 2: center image css
.centerImg {
display: block;
margin: 0 auto;
}
.container {
display: flex;
justify-content: center;
align-items: center;
}
.centerImg {
display: block;
margin: 0 auto;
}