diff --git a/docs/source/styles/flexbox/align-items.blade.md b/docs/source/styles/flexbox/align-items.blade.md
index c6c65ac85..4698e0b4a 100644
--- a/docs/source/styles/flexbox/align-items.blade.md
+++ b/docs/source/styles/flexbox/align-items.blade.md
@@ -6,13 +6,54 @@ category: "Flexbox"
# Align Items
-
+
Utilities for controlling how flex items are positioned along a container's cross axis.
-
-
Usage
-
Responsive
+@include('_partials.feature-badges', [
+ 'responsive' => true,
+ 'customizable' => false,
+ 'hover' => false,
+ 'focus' => false
+])
+
+
+
+
+
+
+
+
+
+
+ | Class |
+ Properties |
+ Description |
+
+
+
+
+ | .items-start |
+ align-items: flex-start; |
+ Align items against the start of the cross axis. |
+
+
+ | .items-center |
+ align-items: center; |
+ Align items along the center of the cross axis. |
+
+
+ | .items-end |
+ align-items: flex-end; |
+ Align items against the end of the cross axis. |
+
+
+ | .items-baseline |
+ align-items: space-between; |
+ Align the baselines of each item. |
+
+
+
### Stretch
Default