mirror of
https://github.com/namibia/awesome-cheatsheets.git
synced 2024-11-18 11:05:16 +00:00
docs(tailwind): add floats
This commit is contained in:
parent
9f5a51f11f
commit
2a18405341
@ -44,22 +44,30 @@
|
||||
* By default, only responsive variants are generated for display utilities.
|
||||
* ******************************************************************************************* */
|
||||
|
||||
.hidden /* display: none; */
|
||||
.block /* display: block; */
|
||||
.inline-block /* display: inline-block; */
|
||||
.inline /* display: inline; */
|
||||
.flex /* display: flex; */
|
||||
.inline-flex /* display: inline-flex; */
|
||||
.grid /* display: grid; */
|
||||
.table /* display: table; */
|
||||
.table-caption /* display: table-caption; */
|
||||
.table-cell /* display: table-cell; */
|
||||
.table-column /* display: table-column; */
|
||||
.table-column-group /* display: table-column-group; */
|
||||
.table-footer-group /* display: table-footer-group; */
|
||||
.table-header-group /* display: table-header-group; */
|
||||
.table-row-group /* display: table-row-group; */
|
||||
.table-row /* display: table-row; */
|
||||
.hidden /* display: none; */
|
||||
.block /* display: block; */
|
||||
.inline-block /* display: inline-block; */
|
||||
.inline /* display: inline; */
|
||||
.flex /* display: flex; */
|
||||
.inline-flex /* display: inline-flex; */
|
||||
.grid /* display: grid; */
|
||||
.table /* display: table; */
|
||||
.table-caption /* display: table-caption; */
|
||||
.table-cell /* display: table-cell; */
|
||||
.table-column /* display: table-column; */
|
||||
.table-column-group /* display: table-column-group; */
|
||||
.table-footer-group /* display: table-footer-group; */
|
||||
.table-header-group /* display: table-header-group; */
|
||||
.table-row-group /* display: table-row-group; */
|
||||
.table-row /* display: table-row; */
|
||||
|
||||
/* *******************************************************************************************
|
||||
* FLOATS
|
||||
* Utilities for controlling the wrapping of content around an element.
|
||||
* By default, only responsive variants are generated for float utilities.
|
||||
* ******************************************************************************************* */
|
||||
|
||||
|
||||
.float-right /* float: right; */
|
||||
.float-left /* float: left; */
|
||||
.float-none /* float: none; */
|
||||
.clearfix /* &::after { content: ""; display: table; clear: both; } */
|
||||
|
Loading…
Reference in New Issue
Block a user