Created
January 22, 2014 20:03
-
-
Save sdeluce/8566308 to your computer and use it in GitHub Desktop.
Pour que les colonnes d'un site fassent la même hauteurs.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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