Skip to content

Instantly share code, notes, and snippets.

@ituki
Last active January 6, 2016 06:56
Show Gist options
  • Save ituki/7149330 to your computer and use it in GitHub Desktop.
Save ituki/7149330 to your computer and use it in GitHub Desktop.
高さそろえるJS・jQueryプラグインまとめ ref: http://qiita.com/ituki_b/items/335933e9d7b1ce4d91af
$(funciton(){
$('ul li').tile(3);
});
h2
ul>li*2
h2
ul>li*3 //ここが高さずれちゃう
$(funciton(){
$('ul li').tile(3);
});
h2
ul>li*2
h2
ul>li*3 //ここが高さずれちゃう
$(funciton(){
$('ul').each(function(i){
$(this).find('li').tile(3);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment