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