I have 2 divs (6 columns each). In the div on the left is an image, in the div on the right is some quote. I want my right div\'s height to be the same as height of image.>
You can make the container of both divs a flexbox, which will automatically apply equal heights to the child elements.
Try this:
.row { display: flex; }
Revised Codepen
By making .row
a flex container, the children (.image
and .quote
) become flex items, and share equal height by default. See here for more details: https://stackoverflow.com/a/33815389/3597276