# Reel
Vertical scrolling with CSS scroll-snap. Like carousel but vertical.
## Basic Example
```html
Panel 1
Panel 2
Panel 3
Panel 4
```
## With Content Panels
```html
Section 1
Full panel content here.
```
## CSS Variables
- `--reel-height` - Container height (default: 80vh)
- `--gap` - Gap between panels (default: 1rem)
## Styling Details
- `display: flex` with `flex-direction: column`
- `scroll-snap-type: y mandatory` for snapping
- Children have `scroll-snap-align: start`
- Vertical overflow with thin scrollbar
## How It Works
- Scroll vertically to navigate panels
- Panels snap to top
- Works with mouse wheel, touch, and keyboard
## See Also
- [Carousel](https://graffiti-ui.com/llms/carousel.txt) - Horizontal scroll-snap