GitHub で確認
垂直方向位置揃え
インライン、インラインブロック、インラインテーブル、およびテーブルセルの要素の垂直方向位置揃えを簡単に変更できます。
vertical-alignment
ユーティリティで要素の位置揃えを変更してください。vertical-align はインライン、インラインブロック、インラインテーブル、およびテーブルセルの要素にのみ影響することに注意してください。
必要に応じて、.align-baseline
、.align-top
、.align-middle
、.align-bottom
、.align-text-bottom
、および .align-text-top
から選択してください。
インライン要素の場合
ベースライン 上 中央 下 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>
テーブルセルの場合
ベースライン | 上 | 中央 | 下 | 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>