grid
.display: grid
to create a grid layout.justify-content: center
to center the child horizontally.align-items: center
to center the child vertically.<div class="grid-centering"> <div class="child">Centered content.</div> </div>
.grid-centering { display: grid; justify-content: center; align-items: center; height: 100px; }
Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️