frontend-errors-layout-pitfalls
Installation
SKILL.md
Frontend Errors : Layout Pitfalls
Diagnostic skill for the canonical layout failures of flex, grid, sticky, viewport units, and stacking contexts. The reader has a broken layout and needs the one-line fix plus the underlying mental model.
Quick Reference
The seven essential resets
/* 1. Universal border-box (every modern CSS reset) */
*, *::before, *::after { box-sizing: border-box; }
/* 2. Flex children : reset the min-content floor */
.flex-child { min-inline-size: 0; min-block-size: 0; }
/* 3. Grid track that MUST shrink below content : use minmax(0, 1fr) */
.grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr); }