diff --git a/docs/source/docs/vertical-alignment.blade.md b/docs/source/docs/vertical-alignment.blade.md index b211c1285..25af9d339 100644 --- a/docs/source/docs/vertical-alignment.blade.md +++ b/docs/source/docs/vertical-alignment.blade.md @@ -11,51 +11,37 @@ features: @include('_partials.work-in-progress') -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
ClassPropertiesDescription
.align-baselinevertical-align: baseline;Align the baseline of an element with the baseline of its parent.
.align-topvertical-align: top;Align the top of an element and its descendants with the top of the entire line.
.align-middlevertical-align: middle;Align the middle of an element with the baseline plus half the x-height of the parent.
.align-bottomvertical-align: bottom;Align the bottom of an element and its descendants with the bottom of the entire line.
.align-text-topvertical-align: text-top;Align the top of an element with the top of the parent element's font.
.align-text-bottomvertical-align: text-bottom;Align the bottom of an element with the bottom of the parent element's font.
-
+@include('_partials.class-table', [ + 'rows' => [ + [ + '.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.", + ], + ] +])