DEV Community

Sk
Sk

Posted on

1 1

3 ways to Center a Div

  1. Using the Grid

.CenterDiv {
      display: grid;
      place-items: center;
}
Enter fullscreen mode Exit fullscreen mode
  1. Using flex
.CenterDiv {
display: flex;
justify-content:center;
align-items: center;
}
Enter fullscreen mode Exit fullscreen mode
  1. place content
.CenterDiv {
  display: grid;
  height: 100vh;
  place-content: center;
}
Enter fullscreen mode Exit fullscreen mode

Top comments (0)

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay