DEV Community

[Comment from a deleted post]
Collapse
 
aisirachcha21 profile image
Ryan Kuruppu

To center an element using flex you don't have to do .child { margin:auto }

You can use what flexbox gives us and use justify-content like this

.parent {
display: flex;
justify-content: center;
}