I have some columns (div
s) which I want to be the same height all the time.
I'm using Zurb Foundation so the layout is like this, and I can't put div
s within others to stretch them.
<div class="row equalheight">
<div class="three columns"> ... </div>
<div class="three columns"> ... </div>
<div class="three columns"> ... </div>
<div class="three columns"> ... </div>
</div>
It probably isn't going to be easy with CSS, but how can I make all columns automagically equal the same height?
Managed to fix this using jquery, solution below.