xxxxxxxxxx
div {
display: flex;
justify-content: center;
align-items: center;
}
xxxxxxxxxx
section {
width: 200px;
border: 1px solid #2d2d2d;
display: flex;
justify-content: center;
}
xxxxxxxxxx
/* how to center a div in css flexbox */
place-content: center center;
flex-flow: row wrap;
/* below two line is work fine and same for both flex and grid layout */
display: (grid or flex as your usecase);
justify-content: center;
align-items: center;