引导程序 5(2021 年更新)
mt-auto
或align-self-end
仍可用于底部对齐 flexbox ( d-flex
) div 中的内容。
Bootstrap 4(原始答案)
正如这里所解释的, align bottom 在display:block
.
使用 display table-cell 或flexbox对齐到底部。
带表格单元
<div style="height:55px !important;" class="align-bottom d-table-cell">
<span>
This text should align to bottom, closer to the line
</span>
</div>
使用flexbox时,自动边距有效。例如 margin-top: auto
<div style="height:55px !important;" class="d-flex">
<span class="mt-auto">
This text should align to bottom, closer to the line
</span>
</div>
或者,
<div style="height:55px !important;" class="d-flex">
<span class="align-self-end">
This text should align to bottom, closer to the line
</span>
</div>
<div class="border-top">
Other content
</div>
演示:https ://codeply.com/go/SOtL0ovFZR