Skip to main content Skip to docs navigation
Bootstrapの新しいバージョンがあります。

Vertical alignment (垂直配置)

インライン、インラインブロック、インラインテーブル、テーブルセルの垂直配置を簡単に変更できます。

vertical-alignment utilitiesを使用して、要素の整列を変更します。vertical-align (垂直方向)の整列は inline, inline-block, inline-table, and table cell にのみ影響することに注意してください。

必要に応じて .align-baseline, .align-top, .align-middle, .align-bottom, .align-text-bottom, .align-text-top から選択してください。

インラインではないコンテンツ (<div> など) を垂直方向にセンタリングするには、flex box utilities を使用します。

インライン要素:

baseline top middle bottom text-top text-bottom
<span class="align-baseline">baseline</span>
<span class="align-top">top</span>
<span class="align-middle">middle</span>
<span class="align-bottom">bottom</span>
<span class="align-text-top">text-top</span>
<span class="align-text-bottom">text-bottom</span>

テーブルセル:

baseline top middle bottom text-top text-bottom
<table style="height: 100px;">
  <tbody>
    <tr>
      <td class="align-baseline">baseline</td>
      <td class="align-top">top</td>
      <td class="align-middle">middle</td>
      <td class="align-bottom">bottom</td>
      <td class="align-text-top">text-top</td>
      <td class="align-text-bottom">text-bottom</td>
    </tr>
  </tbody>
</table>

Sass

Utilities API

Vertical align utilities は scss/_utilities.scss で宣言されています。 Learn how to use the utilities API.

    "align": (
      property: vertical-align,
      class: align,
      values: baseline top middle bottom text-bottom text-top
    ),