# Tables Responsive table wrapper with clean data table styling. ## Basic Example ```html
Name Email Role
Jane Doe jane@example.com Admin
John Smith john@example.com User
``` ## Why the Wrapper? The `.table` wrapper provides: - Horizontal scrolling on small screens - Border and border-radius on the container - Proper overflow handling ## Styling Details - Tables are 100% width with collapsed borders - Headers have bottom border separator - Cells have consistent padding - Last row has no bottom border - Wrapper has `overflow-x: auto` for responsiveness ## CSS Variables - `--table-border` - Custom border-radius for wrapper ## Without Wrapper Basic table styling also works without the wrapper, but you lose the responsive overflow and container styling: ```html
Header
Data
``` ## See Also - [Layouts](https://graffiti-ui.com/llms/layouts.txt) - Page layouts