Fix Max Equal Height

/** Row columns equal heigth **/ /** $ = jQuery **/ $('.container').each(function(){ let highestBox = 0; $('.grid-item', this).each(function(){ if($(this).height() > highestBox) highestBox = $(this).height(); }); $('.grid-item',this).height(highestBox); });
Fixing the height of the columns. All columns with the same height.

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.