twbs--bootstrap/docs/4.1/utilities/vertical-align.md

41 lines
1.3 KiB
Markdown
Raw Normal View History

---
layout: docs
title: Vertical alignment
description: Easily change the vertical alignment of inline, inline-block, inline-table, and table cell elements.
group: utilities
---
Change the alignment of elements with the [`vertical-alignment`](https://developer.mozilla.org/en-US/docs/Web/CSS/vertical-align) utilities. Please note that vertical-align only affects inline, inline-block, inline-table, and table cell elements.
2017-10-04 05:46:36 -04:00
Choose from `.align-baseline`, `.align-top`, `.align-middle`, `.align-bottom`, `.align-text-bottom`, and `.align-text-top` as needed.
With inline elements:
2018-03-14 11:44:38 -04:00
{% capture example %}
<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>
2018-03-14 11:44:38 -04:00
{% endcapture %}
{% include example.html content=example %}
With table cells:
2018-03-14 11:44:38 -04:00
{% capture example %}
<table style="height: 100px;">
2016-10-18 22:31:47 -04:00
<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>
2018-03-14 11:44:38 -04:00
{% endcapture %}
{% include example.html content=example %}