1
1
mirror of https://github.com/namibia/awesome-cheatsheets.git synced 2024-09-23 02:29:06 +00:00

docs(tailwind): top right bottom left

This commit is contained in:
Julien Le Coupanec 2020-03-29 12:51:33 +02:00
parent 47a5e3cb7b
commit 43f33e5ac0

View File

@ -149,10 +149,25 @@
/* /*
* Top / Right / Bottom / Left * Top / Right / Bottom / Left
* ---------- * ----------
* * Utilities for controlling the placement of positioned elements.
* * By default, only responsive variants are generated for top, right, bottom, left, and inset utilities.
*/ */
.inset-0 /* top: 0; right: 0; bottom: 0; left: 0; */
.inset-y-0 /* top: 0; bottom: 0; */
.inset-x-0 /* right: 0; left: 0; */
.top-0 /* top: 0; */
.right-0 /* right: 0; */
.bottom-0 /* bottom: 0; */
.left-0 /* left: 0; */
.inset-auto /* top: auto; right: auto; bottom: auto; left: auto; */
.inset-y-auto /* top: auto; bottom: auto; */
.inset-x-auto /* left: auto; right: auto; */
.top-auto /* top: auto; */
.bottom-auto /* bottom: auto; */
.left-auto /* left: auto; */
.right-auto /* right: auto; */
/* /*
* Visibility * Visibility
* ---------- * ----------