Skip to content

Instantly share code, notes, and snippets.

@killa-kyle
Created October 19, 2015 14:23
Show Gist options
  • Save killa-kyle/58b5e04eb87739baa8e5 to your computer and use it in GitHub Desktop.
Save killa-kyle/58b5e04eb87739baa8e5 to your computer and use it in GitHub Desktop.
Make Two Divs the Same Height
var $columns = $('.column');
var height = 0;
$columns.each(function () {
if ($(this).height() > height) {
height = $(this).height();
}
});
$columns.height(height);
Copy link

ghost commented Oct 19, 2015

ismert problémák,

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment