diff --git a/docs/source/styles/flexbox/justify-content.blade.md b/docs/source/styles/flexbox/justify-content.blade.md
index 0f50b479b..674045751 100644
--- a/docs/source/styles/flexbox/justify-content.blade.md
+++ b/docs/source/styles/flexbox/justify-content.blade.md
@@ -6,12 +6,59 @@ category: "Flexbox"
# Justify Content
-
+
Utilities for controlling flex items are positioned along a container's main axis.
-
-
Responsive
+@include('_partials.feature-badges', [
+ 'responsive' => true,
+ 'customizable' => false,
+ 'hover' => false,
+ 'focus' => false
+])
+
+
+
+
+
+
+
+
+
+
+ | Class |
+ Properties |
+ Description |
+
+
+
+
+ | .justify-start |
+ justify-content: flex-start; |
+ Justify items against the start of the container. |
+
+
+ | .justify-center |
+ justify-content: center; |
+ Justify items in the center of the container. |
+
+
+ | .justify-end |
+ justify-content: flex-end; |
+ Justify items against the end of the container. |
+
+
+ | .justify-between |
+ justify-content: space-between; |
+ Justify items by adding an equal amount of space between each one. |
+
+
+ | .justify-around |
+ justify-content: space-around; |
+ Justify items by adding an equal amount of space around each one. |
+
+
+
### Start
Default