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
1 changed files with 556 additions and 541 deletions

View File

@ -149,10 +149,25 @@
/*
* 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
* ----------