Skip to content

Instantly share code, notes, and snippets.

@sdeluce
Created January 22, 2014 20:03
Show Gist options
  • Select an option

  • Save sdeluce/8566308 to your computer and use it in GitHub Desktop.

Select an option

Save sdeluce/8566308 to your computer and use it in GitHub Desktop.
Pour que les colonnes d'un site fassent la même hauteurs.
var max_height = 0;
$("div.col").each(function(){
if ($(this).height() > max_height) { max_height = $(this).height(); }
});
$("div.col").height(max_height);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment