DEV Community

Discussion on: How to center things in CSS 💘

Collapse
 
ziizium profile image
Habdul Hazeez

With CSS Grid:

.selector {
    display: grid;
    place-items: center;
}

I wrote about it in the following post: