TaskQuick recap. Write CSS that uses all 4 B4-B6 fundamentals. body { font-family: system-ui, sans-serif; }. h1 { font-size: clamp(24px, 5vw, 48px); }. .cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 12px; }. .card { overflow-wrap: anywhere; padding: 12px; background: #eef; }.
Recap: Typography, color, responsive
50 XP5 min
Theory
Quick recap β Modules B4-B6
Typography, color, breakpoint-free responsive. The 4 properties that stop you reaching for a framework:
- `clamp(min, preferred, max)` β fluid type/size without a single
@mediaquery. - System font stack β
font-family: system-ui, sans-serifships native UI typeface, zero load cost. - `grid-template-columns: repeat(auto-fit, minmax(180px, 1fr))` β responsive cards without breakpoints.
- `overflow-wrap: anywhere` β long URLs / hashes / tokens don't blow out a card.
If any feels random, redo B4-03 / B4-01 / B6-04 / B6-13 then come back.
π
Sign up to start coding
Theory is open to everyone. The interactive editor, live preview, and check are unlocked with a 7-day free trial β card required, cancel anytime.
Sign up β free trial βFirst 15 lessons in each track are free. No card needed for those.