DEV Community

Discussion on: How to easily center anything in CSS ?

Collapse
 
vanaf1979 profile image
Stephan Nijman

Or with two lines :p

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

Collapse
 
ramialsayed profile image
Rami Dev

Yeah Grid team 😉