← Back to Gists

CSS Grid Center

📝 CSS
lisaking
lisaking · 4d ago
A CSS Grid utility that perfectly centers any child element both horizontally and vertically within its parent container.
CSS
.parent { display: grid; place-items: center;
}

Comments

-1
leeb leeb 2d ago
@aellis i've found that using place-items: center on the parent can sometimes bleed into unintended child alignment if you're not careful with nested grids.