Home / CSS Tips Generated By ChatGPT / display: table for Vertical Centering in CSS Before Flexbox and Grid, display: table was a trick used for vertical centering. Source Code .table { display: table; height: 100px; } .table-cell { display: table-cell; vertical-align: middle; }