Title: Same Height
Author: damiarita
Published: <strong>2015年10月15日</strong>
Last modified: 2017年1月24日

---

プラグインを検索

このプラグインは **WordPress の最新3回のメジャーリリースに対してテストされていま
せん**。もうメンテナンスやサポートがされていないかもしれず、最新バージョンの WordPress
で使用した場合は互換性の問題が発生する可能性があります。

![](https://s.w.org/plugins/geopattern-icon/same-height.svg)

# Same Height

 作者: [damiarita](https://profiles.wordpress.org/damiarita/)

[ダウンロード](https://downloads.wordpress.org/plugin/same-height.zip)

 * [詳細](https://ja.wordpress.org/plugins/same-height/#description)
 * [レビュー](https://ja.wordpress.org/plugins/same-height/#reviews)
 *  [インストール](https://ja.wordpress.org/plugins/same-height/#installation)
 * [開発](https://ja.wordpress.org/plugins/same-height/#developers)

 [サポート](https://wordpress.org/support/plugin/same-height/)

## 説明

Sometimes we want to display to boxes side by side and they have to look the same.
CSS doesn’t always help.

This plugin will use jQuery to detect the boxes you want and force them all to have
the same size. The size is uses is the size of the tallest box.

If you have a some parts of your content that need to have the same height, simply
wrap them with the `[sameheight/]` shortcode like this:
 [sameheight] This is a 
short text [/sameheight] [sameheight] This is a very, very, very, very, very, very,
very, very, very, very, very, very, very, very, very, very, very, very, very, very,
very, very, very, very, very, very, very, very, very, very, very, very, very, very,
very, very, very, very, very long text [/sameheight]

When the html renders on your screen, both parts content parts will look equally
height. This is very useful if they are floating next to each other and they have
a background.

#### What if I have different sizes in the same page?

You can group shortcodes like this:
 [sameheight group=”1″] This is a very, very,
very, very, very, very, very, very, very, very, very, very, very, very, very, very,
very, very, very, very, very, very, very, very, very, very, very, very, very, very,
very, very, very, very, very, very, very, very, very long text [/sameheight] [sameheight
group=”1″] This is a short text [/sameheight] [sameheight group=”2″] This is another
short text [/sameheight] [sameheight group=”2″] This text is long, but not quite
as long as the previous one. So, I don’t want these to parts to look as long. But
they should still look the same. [/sameheight]

#### What if I have a responsive site and I only want the same height to apply in wide-screen, side-by-side configurations?

You can add a breakpoint like this.
 [sameheight breakpoint=”xs” ] (You could even
use no breakpoint at all) This is a very, very, very, very, very, very, very, very,
very, very, very, very, very, very, very, very, very, very, very, very, very, very,
very, very, very, very, very, very, very, very, very, very, very, very, very, very,
very, very, very long text [/sameheight] [sameheight breakpoint=”xs” ] (You could
even use no breakpoint at all) This text always has to use the same height than 
the previous one. [/sameheight] [sameheight breakpoint=”md”] This is a very, very,
very, very, very, very, very, very, very, very, very, very, very, very, very, very,
very, very, very, very, very, very, very, very, very, very, very, very, very, very,
very, very, very, very, very, very, very, very, very long text [/sameheight] [sameheight
breakpoint=”md”] This text only has to use the same height when it is next to the
previous, but not when it is underneath on smarphones. [/sameheight]

You have these breakpoints (those familiar with bootstrap know them):

 * “xs” forces same height for all window widths (extra small window – smartphone).
   Alternatively, you can use no breakpoint
 * “sm” forces same height for window widths > 768px (small window – small tablet)
 * “md” forces same height for window widths > 992px (medium window – table or small
   desktop)
 * “lg” forces same height for window widths > 1200px (large window – desktop)

Names and widths are based on bootstrap.

Please, note that shortcodes with different “breakpoint” will be in different groups
regardless of the “group” setting. You can still use “group” to separate to groups
with the same “breakpoint”.

#### I have some styles in CSS for my classes. How can I apply classes to the content?

Easy:
 [sameheight additional_classes=”my-class1 my-classA”] This is a short text[/
sameheight additional_classes=”my-class2 my-classB”] [sameheight] This is a very,
very, very, very, very, very long text [/sameheight]

#### Can I use all the possibilities together?

Sure:
 [sameheight group=”1″ breakpoint=”md” additional_classes=”my-class1 my-classA”/]
will work.

#### Do I need to use the shortcode?

No! If you are editing your html, you can put the right properties in it. That’s
all tha shortcode does. Make sure you add the class ‘same-height’. If you use a 
break point, add it with a hyphen (-) like this: ‘same-height-xs’, ‘same-height-
sm’, ‘same-height-md’, or ‘same-height-lg’. The Javascript is looking for those 
classes to identify the html elements it has to work on.
 If you are grouping boxes,
use the ‘same-height-group’ property. Like `<div class="same-height" same-height-
group="1" >`

## スクリーンショット

 * [[
 * To boxes side to side with the same height

## インストール

 1. On the left side menu select Plugins > Add New
 2. In “Search Plugins” field enter “same height” and search
 3. Press “Install Now” button of the “same height”

## FAQ

  What if I have different sizes in the same page?

You can group shortcodes like this:
 [sameheight group=”1″] This is a very, very,
very, very, very, very, very, very, very, very, very, very, very, very, very, very,
very, very, very, very, very, very, very, very, very, very, very, very, very, very,
very, very, very, very, very, very, very, very, very long text [/sameheight] [sameheight
group=”1″] This is a short text [/sameheight] [sameheight group=”2″] This is another
short text [/sameheight] [sameheight group=”2″] This text is long, but not quite
as long as the previous one. So, I don’t want these to parts to look as long. But
they should still look the same. [/sameheight]

  What if I have a responsive site and I only want the same height to apply in wide-
screen, side-by-side configurations?

You can add a breakpoint like this.
 [sameheight breakpoint=”xs” ] (You could even
use no breakpoint at all) This is a very, very, very, very, very, very, very, very,
very, very, very, very, very, very, very, very, very, very, very, very, very, very,
very, very, very, very, very, very, very, very, very, very, very, very, very, very,
very, very, very long text [/sameheight] [sameheight breakpoint=”xs” ] (You could
even use no breakpoint at all) This text always has to use the same height than 
the previous one. [/sameheight] [sameheight breakpoint=”md”] This is a very, very,
very, very, very, very, very, very, very, very, very, very, very, very, very, very,
very, very, very, very, very, very, very, very, very, very, very, very, very, very,
very, very, very, very, very, very, very, very, very long text [/sameheight] [sameheight
breakpoint=”md”] This text only has to use the same height when it is next to the
previous, but not when it is underneath on smarphones. [/sameheight]

You have these breakpoints (those familiar with bootstrap know them):

 * “xs” forces same height for all window widths (extra small window – smartphone).
   Alternatively, you can use no breakpoint
 * “sm” forces same height for window widths > 768px (small window – small tablet)
 * “md” forces same height for window widths > 992px (medium window – table or small
   desktop)
 * “lg” forces same height for window widths > 1200px (large window – desktop)

Names and widths are based on bootstrap.

Please, note that shortcodes with different “breakpoint” will be in different groups
regardless of the “group” setting. You can still use “group” to separate to groups
with the same “breakpoint”.

  I have some styles in CSS for my classes. How can I apply classes to the content?

Easy:
 [sameheight additional_classes=”my-class1 my-classA”] This is a short text[/
sameheight] [sameheight additional_classes=”my-class2 my-classB”] This is a very,
very, very, very, very, very long text [/sameheight]

  Can I use all the possibilities together?

Sure:
 [sameheight group=”1″ breakpoint=”md” additional_classes=”my-class1 my-classA”/]
will work.

  Do I need to use the shortcode?

No! If you are editing your html, you can put the right properties in it. That’s
all tha shortcode does. Make sure you add the class ‘same-height’. If you use a 
break point, add it with a hyphen (-) like this: ‘same-height-xs’, ‘same-height-
sm’, ‘same-height-md’, or ‘same-height-lg’. The Javascript is looking for those 
classes to identify the html elements it has to work on.
 If you are grouping boxes,
use the ‘same-height-group’ property. Like `<div class="same-height" same-height-
group="1" >`

## 評価

![](https://secure.gravatar.com/avatar/1062baa48a5044defe20da7f33d31abbf87ae710cff26671e2a0b9d7d2ddeb5d?
s=60&d=retro&r=g)

### 󠀁[Simple and effective](https://wordpress.org/support/topic/simple-and-effective-756/)󠁿

 [NikosZ](https://profiles.wordpress.org/nikosz/) 2017年6月29日 1 reply

It easy and works great for same height text boxes. If only i have found it before
i lost 2 hours playing with paddings.

![](https://secure.gravatar.com/avatar/f5c6166d8b0683d9e0bd7b7f6ce0b8f01a5403ca8378264a6f7180f7569baa91?
s=60&d=retro&r=g)

### 󠀁[Worked where others failed](https://wordpress.org/support/topic/worked-where-others-failed-2/)󠁿

 [NightL](https://profiles.wordpress.org/nightl/) 2016年9月12日 1 reply

I was targeting divs in the header and the content areas. Other plugins failed and
my hand coding that would work if the divs were on the same page failed as well.
Happy now

![](https://secure.gravatar.com/avatar/a865d46e395c9c0ad76da21fe5f37fa99d49026ad644cb7a839f46c8bf980a7d?
s=60&d=retro&r=g)

### 󠀁[Works!](https://wordpress.org/support/topic/works-943/)󠁿

 [Finger Tommy](https://profiles.wordpress.org/nakednipple/) 2016年9月3日 1 reply

If you use it in php code, just use “same-height”, not “sameheight”. I´m using Plugin
Version 1.1.1

![](https://secure.gravatar.com/avatar/38c8935d9bc763a088372ea2da2fedb3d0744798819720af4521ad4c965f00e2?
s=60&d=retro&r=g)

### 󠀁[Does exactly what it says](https://wordpress.org/support/topic/does-exactly-what-it-says-85/)󠁿

 [damiarita](https://profiles.wordpress.org/damiarita/) 2016年9月3日 2 replies

The plugin is going to put an extra JS file on your page which will find all the
entities that were wrapped with the shortcode and force them to be as heigh as the
heighest

 [ 4件のレビューをすべて表示 ](https://wordpress.org/support/plugin/same-height/reviews/)

## 貢献者と開発者

Same Height はオープンソースソフトウェアです。以下の人々がこのプラグインに貢献し
ています。

貢献者

 *   [ damiarita ](https://profiles.wordpress.org/damiarita/)

[“Same Height” をあなたの言語に翻訳しましょう。](https://translate.wordpress.org/projects/wp-plugins/same-height)

### 開発に興味がありますか ?

[コードを閲覧](https://plugins.trac.wordpress.org/browser/same-height/)するか、[SVN リポジトリ](https://plugins.svn.wordpress.org/same-height/)
をチェックするか、[開発ログ](https://plugins.trac.wordpress.org/log/same-height/)
を [RSS](https://plugins.trac.wordpress.org/log/same-height/?limit=100&mode=stop_on_copy&format=rss)
で購読してみてください。

## 変更履歴

#### 1.4.0

 * We make this plugin compatible with Automattic’s AMP plugin https://wordpress.
   org/plugins/amp/

#### 1.3.0

*We load the minified JS by default. If SCRIPT_DEBUG is set to true, the non minified
is used
 *We remove deprecated jQuery functions

#### 1.2.0

 * When blocks are marked to have the same height with a breakpoint, the window 
   widths measurement is improved to have consistency with bootstrap: In stead of
   usind window.widht, we now use window.matchMedia. For older browser without support
   to .matchMedia, .width is used.

#### 1.1.0

 * When blocks marked to have the same height contained images, the previous version
   could do the calculations without taking it into account. Now, all images will
   be taken into account after they load.

#### 1.0.0

 * First release

## メタ

 *  バージョン **1.4.1**
 *  最終更新日 **9年前**
 *  有効インストール数 **100+**
 *  WordPress バージョン ** 1.3.0またはそれ以降 **
 *  検証済み最新バージョン: **4.7.33**
 *  言語
 * [English (US)](https://wordpress.org/plugins/same-height/)
 * タグ
 * [css](https://ja.wordpress.org/plugins/tags/css/)[javascript](https://ja.wordpress.org/plugins/tags/javascript/)
   [jquery](https://ja.wordpress.org/plugins/tags/jquery/)[shortcode](https://ja.wordpress.org/plugins/tags/shortcode/)
 *  [詳細を表示](https://ja.wordpress.org/plugins/same-height/advanced/)

## 評価

 5つ星中5つ星

 *  [  4 5-星レビュー     ](https://wordpress.org/support/plugin/same-height/reviews/?filter=5)
 *  [  0 4-星レビュー     ](https://wordpress.org/support/plugin/same-height/reviews/?filter=4)
 *  [  0 3-星レビュー     ](https://wordpress.org/support/plugin/same-height/reviews/?filter=3)
 *  [  0 2-星レビュー     ](https://wordpress.org/support/plugin/same-height/reviews/?filter=2)
 *  [  0 1-星レビュー     ](https://wordpress.org/support/plugin/same-height/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/same-height/reviews/#new-post)

[すべてのレビューを見る](https://wordpress.org/support/plugin/same-height/reviews/)

## 貢献者

 *   [ damiarita ](https://profiles.wordpress.org/damiarita/)

## サポート

意見や質問がありますか ?

 [サポートフォーラムを表示](https://wordpress.org/support/plugin/same-height/)