Last Updated: February 25, 2016
·
477
· mbillard

Make HTML elements have the same height

Do you ever want to ensure that 2 elements have the same height?

// You have:
█ █
█

// but you want:
█ █
█ █

Then use this simple jquery plugin and simply call:

$("selector-to-my-elements").equalHeights();

The plugin was inspired by this post and this comment.