How to center an element horizontally and vertically with CSS

nicvazquez

Nicolás Vazquez

Posted on September 1, 2022

How to center an element horizontally and vertically with CSS
.container {
    display: grid;
    place-items: center;
}
Enter fullscreen mode Exit fullscreen mode

It was pretty easy, right? In just two lines of code you can center an element both vertically and horizontally.

See you!

💖 💪 🙅 🚩
nicvazquez
Nicolás Vazquez

Posted on September 1, 2022

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related