Bootstrap/docs/4.5/utilities/vertical-align

来自菜鸟教程
跳转至:导航、​搜索

在GitHub上查看

垂直对齐

轻松更改内联,内联块,内联表和表单元格元素的垂直对齐方式。

使用更改元素的对齐方式 vertical-alignment 公用事业。 请注意,垂直对齐仅影响内联,内联块,内联表和表单元格元素。

从中选择 .align-baseline,.align-top,.align-middle,.align-bottom,.align-text-bottom ,和 .align-text-top 如所须。

带有内联元素:

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>

使用表格单元格:

基线 top 中间 底部 文字顶部 文字底部
<table style="height: 100px;">
<tbody>
<tr>
<td class="align-baseline"> 基线 </td>
<td class="align-top"> top </td>
<td class="align-middle"> 中间 </td>
<td class="align-bottom"> 底部 </td>
<td class="align-text-top"> 文字顶部 </td>
<td class="align-text-bottom"> 文字底部 </td>
</tr>
</tbody>
</table>

top

中间

底部

文字顶部

文字底部