Kaanbalcat
How to center a div?
DapierDapierNov 20, 2021

How to center a div?

We have 2 ways, pretty easy, one more than another.

The first way is using flexbox

display= "flex" justify-content= "center"

css.png

And my favorite way, css grid.

Only you have to use 2 lines of code!

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

Dapier

Dapier

Kobeni is the best character ever!

Comments

Related Posts

Categories