diff --git a/docs/source/styles/overflow.blade.md b/docs/source/styles/overflow.blade.md index 34e17cbc9..ad73f1565 100644 --- a/docs/source/styles/overflow.blade.md +++ b/docs/source/styles/overflow.blade.md @@ -5,15 +5,65 @@ title: "Overflow" # Overflow - -
+
Utilities for controlling how an element handles content that is too large for the container.
- +@include('_partials.feature-badges', [ + 'responsive' => true, + 'customizable' => false, + 'hover' => false, + 'focus' => false +]) +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ClassPropertiesDescription
.overflow-visibleoverflow: 'visible';Prevent content within an element from being clipped.
.overflow-autooverflow: 'auto';Add scrollbars to an element if needed.
.overflow-hiddenoverflow: 'hidden';Clip any content that overflows the element.
.maskoverflow: 'hidden';Clip any content that overflows the element. Alias of .overflow-hidden.
.overflow-x-scrolloverflow-x: 'auto'Allow horizontal scrolling if needed.
.overflow-y-scrolloverflow-y: 'auto'Allow horizontal scrolling if needed.
.overflow-scrolloverflow: 'scroll';Add scrollbars to an element.
+
### Visible Default