1
1
mirror of https://github.com/namibia/awesome-cheatsheets.git synced 2024-12-20 01:03:14 +00:00

docs(tailwind): position

This commit is contained in:
Julien Le Coupanec 2020-03-29 12:46:50 +02:00
parent 56229c1a46
commit 47a5e3cb7b

View File

@ -136,11 +136,16 @@
/* /*
* Position * Position
* ---------- * ----------
* * Utilities for controlling how an element is positioned in the DOM.
* * By default, only responsive variants are generated for position utilities.
*/ */
.static /* position: static; */
.fixed /* position: fixed; */
.absolute /* position: absolute; */
.relative /* position: relative; */
.sticky /* position: sticky; */
/* /*
* Top / Right / Bottom / Left * Top / Right / Bottom / Left
* ---------- * ----------