Guides building and reviewing page layouts with 12-column grids, CSS Grid/Flexbox decisions, 8-point spacing systems, Gestalt proximity, visual weight, and card grid patterns from Material Design and Bootstrap.
How this skill is triggered — by the user, by Claude, or both
Slash command
/visual-design-principles:layout-spatial-structureThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Every professional layout is built on a grid. The grid is not a suggestion — it is the structural skeleton that makes alignment effortless, spacing predictable, and responsive behavior automatic. Material Design, Bootstrap, and every major design system converge on the same fundamentals: a 12-column grid with an 8-point spacing system.
Every professional layout is built on a grid. The grid is not a suggestion — it is the structural skeleton that makes alignment effortless, spacing predictable, and responsive behavior automatic. Material Design, Bootstrap, and every major design system converge on the same fundamentals: a 12-column grid with an 8-point spacing system.
| Component | Purpose | Typical Value |
|---|---|---|
| Columns | Content containers; 12 divides evenly by 2, 3, 4, 6 | 12 columns |
| Gutters | Space between columns; consistent rhythm | 16px–32px (24px default) |
| Margins | Outer breathing room on left/right edges | 16px mobile, 24px tablet, auto-center desktop |
| Container | Max-width wrapper preventing ultra-wide lines | 1200px–1440px |
Grid adherence rule: >90% of element edges must align to grid lines. Audit by overlaying a 12-column grid on any screen — misaligned elements are immediately visible.
| Use Case | Choose | Reason |
|---|---|---|
| Page-level layout (header, sidebar, main, footer) | CSS Grid | Two-dimensional control over rows and columns |
| Card grids with uniform items | CSS Grid | auto-fit/auto-fill with minmax() handles responsiveness |
| Navigation bars, button groups | Flexbox | One-dimensional alignment with wrapping |
| Centering a single element | Flexbox | justify-content + align-items in three lines |
| Overlapping elements or complex placement | CSS Grid | Named grid areas and explicit row/column placement |
| Unknown number of items in a row | Flexbox | flex-wrap distributes naturally |
Default rule: Start with CSS Grid for layout, drop to Flexbox for component-level alignment.
Use the constrained 4px/8px spacing scale defined in the whitespace-density skill. All grid gutters, margins, and padding must come from that scale. Never use arbitrary spacing values.
Apply the Gestalt proximity rule (see whitespace-density skill for the full ≤50% rule and spacing tokens) to all layout decisions. Internal spacing within a grid region must be visibly tighter than spacing between regions.
Use CSS Grid auto-fit with minmax() for responsive card grids (see responsive-design skill for fluid grid techniques).
Minimum card width: 280px for content cards, 200px for thumbnail cards. Set gap using the spacing scale.
Place layout regions to support natural eye scanning. See the visual-hierarchy skill for F-pattern and Z-pattern rules — layout determines where regions go, hierarchy determines what draws attention within them.
| Anti-Pattern | Why It Fails | Fix |
|---|---|---|
| Random widths (347px, 513px) | No grid alignment; looks accidental | Snap to column spans or percentages |
| Mixing grid systems (12-col + 10-col) | Conflicting rhythms; nothing aligns | One grid system per project |
| Equal internal and external spacing | Groups are indistinguishable; flat hierarchy | Apply Gestalt proximity rule (see whitespace-density skill) |
| Hardcoded pixel widths on responsive layouts | Breaks on every viewport | Use fr, %, minmax(), or container queries |
| Nesting grids more than 2 levels deep | Compounding gutters create unpredictable spacing | Flatten structure; use subgrid |
Working implementations in examples/:
examples/grid-and-card-layout.md — Complete 12-column grid setup, responsive card grid with CSS Grid auto-fit, Tailwind configuration, and React componentWhen reviewing or building layouts:
whitespace-density skill)auto-fit/auto-fill with minmax() for responsive reflowwhitespace-density skill)npx claudepluginhub oborchers/fractional-cto --plugin visual-design-principlesGuides selection and application of manuscript, column, modular, baseline, and compound grids for page layout, responsive breakpoints, and vertical rhythm.
Defines responsive layout grid systems with columns, gutters, margins, breakpoints, and behaviors like fluid/adaptive layouts for consistent designs across devices.
Establishes a structured grid system for print, web, or mobile layouts using Swiss-style design principles. Defines base units, columns, gutters, margins, and baseline grids for consistent alignment and proportion.