From df61649893f0eb5cd9280ef1483f54a62b38c7ed Mon Sep 17 00:00:00 2001 From: Jonathan Reinink Date: Mon, 30 Oct 2017 06:40:01 -0400 Subject: [PATCH] Add badges + cheatsheet table for overflow docs --- docs/source/styles/overflow.blade.md | 60 +++++++++++++++++++++++++--- 1 file changed, 55 insertions(+), 5 deletions(-) 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