From 47a5e3cb7b6de1ed67b08b6fd011d4d3d016c092 Mon Sep 17 00:00:00 2001 From: Julien Le Coupanec Date: Sun, 29 Mar 2020 12:46:50 +0200 Subject: [PATCH] docs(tailwind): position --- frontend/tailwind.css | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/frontend/tailwind.css b/frontend/tailwind.css index a777d8e..b5b1446 100644 --- a/frontend/tailwind.css +++ b/frontend/tailwind.css @@ -136,11 +136,16 @@ /* * 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 * ----------