mirror of
https://github.com/namibia/awesome-cheatsheets.git
synced 2024-12-20 09:10:48 +00:00
docs(tailwind): add overflow
This commit is contained in:
parent
3063b14961
commit
8c35714275
@ -110,3 +110,25 @@
|
|||||||
.object-right-bottom /* object-position: right bottom; */
|
.object-right-bottom /* object-position: right bottom; */
|
||||||
.object-right-top /* object-position: right top; */
|
.object-right-top /* object-position: right top; */
|
||||||
.object-top /* object-position: top; */
|
.object-top /* object-position: top; */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Overflow
|
||||||
|
* ----------
|
||||||
|
* Utilities for controlling how an element handles content that is too large for the container.
|
||||||
|
* By default, only responsive variants are generated for overflow utilities.
|
||||||
|
*/
|
||||||
|
|
||||||
|
.overflow-auto /* overflow: auto; */
|
||||||
|
.overflow-hidden /* overflow: hidden; */
|
||||||
|
.overflow-visible /* overflow: visible; */
|
||||||
|
.overflow-scroll /* overflow: scroll; */
|
||||||
|
.overflow-x-auto /* overflow-x: auto; */
|
||||||
|
.overflow-y-auto /* overflow-y: auto; */
|
||||||
|
.overflow-x-hidden /* overflow-x: hidden; */
|
||||||
|
.overflow-y-hidden /* overflow-y: hidden; */
|
||||||
|
.overflow-x-visible /* overflow-x: visible; */
|
||||||
|
.overflow-y-visible /* overflow-y: visible; */
|
||||||
|
.overflow-x-scroll /* overflow-x: scroll; */
|
||||||
|
.overflow-y-scroll /* overflow-y: scroll; */
|
||||||
|
.scrolling-touch /* -webkit-overflow-scrolling: touch; */
|
||||||
|
.scrolling-auto /* -webkit-overflow-scrolling: auto; */
|
||||||
|
Loading…
Reference in New Issue
Block a user