mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-29 11:24:18 +01:00
Add vertical-align utilities
- Adds six new utils for vertical-align property - Documents the additional classes in the utils docs
This commit is contained in:
parent
6d6538fc81
commit
62a129184d
@ -66,6 +66,7 @@
|
||||
- title: Sizing and positioning
|
||||
- title: Spacing
|
||||
- title: Typography
|
||||
- title: Vertical align
|
||||
|
||||
# - title: Extend
|
||||
# pages:
|
||||
|
33
docs/utilities/vertical-align.md
Normal file
33
docs/utilities/vertical-align.md
Normal file
@ -0,0 +1,33 @@
|
||||
---
|
||||
layout: docs
|
||||
title: Vertical alignment
|
||||
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.
|
||||
|
||||
Choose from `.align-baseline`, `.align-top`, `.align-middle`, `.align-bottom`, `.align-text-bottom`, and `.align-text-top` as needed.
|
||||
|
||||
With inline elements:
|
||||
|
||||
{% example html %}
|
||||
<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>
|
||||
{% endexample %}
|
||||
|
||||
With table cells:
|
||||
|
||||
{% example html %}
|
||||
<table style="height: 100px;">
|
||||
<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>
|
||||
</table>
|
||||
{% endexample %}
|
@ -1,3 +1,4 @@
|
||||
@import "utilities/align";
|
||||
@import "utilities/background";
|
||||
@import "utilities/borders";
|
||||
@import "utilities/clearfix";
|
||||
|
6
scss/utilities/_align.scss
Normal file
6
scss/utilities/_align.scss
Normal file
@ -0,0 +1,6 @@
|
||||
.align-baseline { vertical-align: baseline !important; } // Browser default
|
||||
.align-top { vertical-align: top !important; }
|
||||
.align-middle { vertical-align: middle !important; }
|
||||
.align-bottom { vertical-align: bottom !important; }
|
||||
.align-text-bottom { vertical-align: text-bottom !important; }
|
||||
.align-text-top { vertical-align: text-top !important; }
|
Loading…
Reference in New Issue
Block a user