dragoon0x/everything-design-taste

grid-mastery

Advanced grid systems, subgrid, asymmetric grids, breaking the grid intentionally, and CSS Grid strategies.

First seen Jul 18, 2026

Installation

$ npx skills add dragoon0x/everything-design-taste --skill grid-mastery

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from dragoon0x/everything-design-taste · top by installs.

npx skills add dragoon0x/everything-design-taste

Browse all from dragoon0x/everything-design-taste

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 11
License LICENSE
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,069 B
  • docs SUMMARY.md 127 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

Grid Mastery

Beyond 12 Columns

The 12-column grid is a starting point, not a religion. Consider:

  • 8-column grid for editorial content (wider columns, better line lengths)
  • 16-column grid for data-dense dashboards
  • Asymmetric grids (2:1, 3:2 ratios) for visual tension
  • Modular grids (rows AND columns) for magazine layouts

CSS Grid Strategies

/* Named grid areas for semantic layout */
.layout {
  display: grid;
  grid-template-areas:
    'header header header'
    'sidebar main aside'
    'footer footer footer';
  grid-template-columns: 240px 1fr 320px;
}

Breaking the Grid

Intentional grid breaks create focal points:

  • Full-bleed images that span beyond the content grid
  • Pull quotes that overlap columns
  • Hero elements that ignore the underlying structure
  • Rule: Break the grid for emphasis, never for laziness