LoginSignup
0
1

More than 5 years have passed since last update.

要素の高さを揃えるjsプラグイン

Posted at

プラグイン紹介

jQuery.match.height
https://github.com/liabru/jquery-match-height

使い方

「jquery.matchHeight-min.js」を読み込む

<script src="./js/jquery.matchHeight-min.js"></script>

高さを揃えたい要素をjqueryのセレクタで指定する

$(function(){
    // jquery.matchHeightで要素の高さを揃える
    $('.hoge').matchHeight();
});

完成形

<script src="./js/jquery.matchHeight-min.js"></script>
<script>
    $(function(){
        $('.hoge').matchHeight();
    })
</script>
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1