Skip to main content
🎨 CSS as a design system·Module B6 · Lesson 14
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:

  1. `clamp(min, preferred, max)` — fluid type/size without a single @media query.
  2. System font stackfont-family: system-ui, sans-serif ships native UI typeface, zero load cost.
  3. `grid-template-columns: repeat(auto-fit, minmax(180px, 1fr))` — responsive cards without breakpoints.
  4. `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.

PreviousNext lesson →

Get one Python or web tip a day — by email

Short, hand-written, no spam. Unsubscribe in one click.