DEV Community

[Comment from a deleted post]
Collapse
 
madsstoumann profile image
Mads Stoumann • Edited

Centering, both horizontally and vertically, can be as simple as:

.center {
  display: grid;
  place-items: center;
}
Enter fullscreen mode Exit fullscreen mode

More info here