スタバの記事・Wordpressに関する記事を書いています
jQueryAutoHeight

Jqueryで自動でdivの高さを調整「jQueryAutoHeight」

ダウンロードはこちらから
tinybeans/jQueryAutoHeight

ダウンロードして入れ込むのが面倒という方は、head内にこのコードを入力
[php] <script src="//cdnjs.cloudflare.com/ajax/libs/jquery.matchHeight/0.7.0/jquery.matchHeight-min.js"></script>
[/php] この方法ならサイトからダウンロードしてこなくても済みます。
さて実際に入れ込むコードは下記のだけで済みます。
[php] <script type="text/javascript">
jQuery(function($){
$(揃えたい要素 例:div#hogeやp.hoge1など ).autoHeight();
});
</script>
[/php] 複数ある場合は、
[php] <script type="text/javascript">
jQuery(function($){
$(div#hoge).autoHeight();
    $(p.hoge2).autoHeight();
    $(li.hoge3).autoHeight();
});
</script>
[/php] このように入れることで高さを揃えることができます。

jQueryAutoHeight
最新情報をチェックしよう!