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

docs(tailwind): align-content

This commit is contained in:
Julien Le Coupanec 2020-03-29 14:18:58 +02:00
parent eef88d09e1
commit 267e4cc1de

View File

@ -236,10 +236,16 @@
/* /*
* Align Content * Align Content
* ---------- * ----------
* * Utilities for controlling how lines are positioned in multi-line flex containers.
* * By default, only responsive variants are generated for align-content utilities.
*/ */
.content-start /* align-content: flex-start; */
.content-center /* align-content: center; */
.content-end /* align-content: flex-end; */
.content-between /* align-content: space-between; */
.content-around /* align-content: space-around; */
/* /*
* Align Self * Align Self
* ---------- * ----------