diff --git a/docs/source/docs/vertical-alignment.blade.md b/docs/source/docs/vertical-alignment.blade.md
index 0c5f9ac74..871fb1315 100644
--- a/docs/source/docs/vertical-alignment.blade.md
+++ b/docs/source/docs/vertical-alignment.blade.md
@@ -5,9 +5,94 @@ title: "Vertical Alignment"
# Vertical Alignment
-
-
Usage
-
Responsive
-
Customizing
+
+ Utilities for controlling the vertical alignment of an inline or table-cell box.
+@include('_partials.feature-badges', [
+ 'responsive' => true,
+ 'customizable' => false,
+ 'hover' => false,
+ 'focus' => false
+])
+
+
+
+
+
+
+
+
+
+
+ | Class |
+ Properties |
+ Description |
+
+
+
+
+ | .align-baseline |
+ vertical-align: baseline; |
+ Align the baseline of an element with the baseline of its parent |
+
+
+ | .align-top |
+ vertical-align: top; |
+ Align the top of an element and its descendants with the top of the entire line. |
+
+
+ | .align-middle |
+ vertical-align: middle; |
+ Align the middle of an element with the baseline plus half the x-height of the parent. |
+
+
+ | .align-bottom |
+ vertical-align: bottom; |
+ Align the bottom of an element and its descendants with the bottom of the entire line. |
+
+
+ | .align-text-top |
+ vertical-align: text-top; |
+ Align the top of an element with the top of the parent element's font. |
+
+
+ | .align-text-bottom |
+ vertical-align: text-bottom; |
+ Align the bottom of an element with the bottom of the parent element's font. |
+
+
+
+
+
+### Tables
+
+@component('_partials.code-sample')
+
+
+
+ | Baseline text |
+ | Top-aligned text |
+ | Middle-aligned text |
+ | Bottom-aligned text |
+ |
+
+
+@endcomponent
+
+
+### Inline-block Elements
+
+@component('_partials.code-sample')
+
+
+
+
+
+@endcomponent