Try this jquery code, it detects the largest element and sets all of them to that height.
var height = 0; $(".table").find(".table-cell").each(function() { height = Math.max(height, $(this).height()); }); $(".table").find(".table-cell").css("height", height);
Here is a JSfiddle example.
You need jquery for this, so be sure to add the jquery library to your code.
source share