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.
We'll cover the following...
We'll cover the following...
Problem description
You have two <div class="column">
elements inside a parent <div class="container">
. Use CSS to mimic table behavior so that ...