diff --git a/docs/source/docs/overflow.blade.md b/docs/source/docs/overflow.blade.md index 929e72b99..4c3f44e8c 100644 --- a/docs/source/docs/overflow.blade.md +++ b/docs/source/docs/overflow.blade.md @@ -18,11 +18,6 @@ title: "Overflow"
| Class | @@ -32,35 +27,45 @@ title: "Overflow"|||||
|---|---|---|---|---|---|
| .overflow-visible | -overflow: visible; | -Prevent content within an element from being clipped. | +.overflow-visible | +overflow: visible; | +Don't clip content that overflows the element. |
| .overflow-auto | -overflow: auto; | +.overflow-auto | +overflow: auto; | Add scrollbars to an element if needed. | |
| .overflow-hidden | -overflow: hidden; | +.overflow-hidden | +overflow: hidden; | Clip any content that overflows the element. | |
| .overflow-x-scroll | -overflow-x: auto; | +.overflow-x-scroll | +overflow-x: auto; | Allow horizontal scrolling if needed. | |
| .overflow-y-scroll | -overflow-y: auto; | +.overflow-y-scroll | +overflow-y: auto; | Allow horizontal scrolling if needed. | |
| .overflow-scroll | -overflow: scroll; | +.overflow-scroll | +overflow: scroll; | Add scrollbars to an element. | |
| .scrolling-touch | +-webkit-overflow-scrolling: touch; | +Use momentum-based scrolling on touch devices. | +|||
| .scrolling-auto | +-webkit-overflow-scrolling: auto; | +Use "regular" scrolling on touch devices. | +