```
## Split
Flexbox with space-between:
```html
Left content
Right content
```
### Vertical Split
For sidebars with content at top and bottom:
```html
Navigation at top
Footer at bottom
```
## Common Patterns
### Form with Stack
```html
```
### Button Group with Cluster
```html
Cancel
Save
```
### Tags with Cluster
```html
CSS
HTML
JS
```
### Card Content with Stack
```html
Card Title
Card description text.
Action
```
## 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