1
1
mirror of https://github.com/namibia/awesome-cheatsheets.git synced 2024-06-02 20:50:47 +00:00

docs(tailwind): add floats

This commit is contained in:
Julien Le Coupanec 2020-03-28 22:12:59 +01:00
parent 9f5a51f11f
commit 2a18405341

View File

@ -61,5 +61,13 @@
.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; } */