# Stack & Cluster Flexbox utilities for vertical and horizontal layouts. ## Stack (Vertical) Vertical flexbox with consistent gap: ```html

Title

First paragraph

Second paragraph

``` Custom gap: ```html
``` ## Cluster (Horizontal) Horizontal wrapping flexbox: ```html
Tag 1 Tag 2 Tag 3
``` Custom gap: ```html
``` ## Split Flexbox with space-between: ```html
Left content Right content
``` ### Vertical Split For sidebars with content at top and bottom: ```html ``` ## Common Patterns ### Form with Stack ```html
``` ### Button Group with Cluster ```html
``` ### Tags with Cluster ```html
CSS HTML JS
``` ### Card Content with Stack ```html

Card Title

Card description text.

``` ## Default Properties **Stack:** - `display: flex` - `flex-direction: column` - `gap: 1rem` - Resets child margins to 0 **Cluster:** - `display: flex` - `flex-wrap: wrap` - `gap: 1rem` - `align-items: center` **Split:** - `display: flex` - `justify-content: space-between` - `align-items: start` - `gap: 20px` ## See Also - [Layouts](https://graffiti-ui.com/llms/layouts.txt) - Grid-based page layouts