...

/

Solution: Table Display Equal Height

Solution: Table Display Equal Height

Let’s leverage CSS display: table and display: table-cell to ensure two side-by-side columns always share the same height without Flexbox.

Problem description

You have two <div class="column"> elements inside a parent <div class="container">. Use CSS to mimic table behavior so that ...