View on GitHub
Vertical alignment (垂直配置)
インライン、インラインブロック、インラインテーブル、テーブルセルの垂直配置を簡単に変更できます。
vertical-alignment
utilitiesを使用して、要素の整列を変更します。垂直方向の整列はインライン、インラインブロック、インラインテーブル、テーブルセル要素にのみ影響することに注意してください。
必要に応じて .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>