Grid Centering

Grid can center content using place-items.

Preview

Code

<style>
.container{
display:grid;
place-items:center;
height:150px;
background:#e5e7eb;
}

.item{
background:#ef4444;
color:white;
padding:20px;
}
</style>

<div class="container">
<div class="item">Centered</div>
</div>

More Grid Intro Examples (8)