Skip to main content
← 🎨 CSS as a design systemΒ·Module B9 Β· Lesson 12
TaskQuick recap. Write CSS that uses all 4 B7-B9 modern features. Use @layer base, components. In base, set body color via light-dark(black, white). In components: .card { container-type: inline-size; padding: 12px; border: 1px solid #ccc; } and .card:has(img) { background: lemonchiffon; }. Add @container (min-width: 200px) { .card h3 { font-size: 20px; } }.

Recap: Animation, architecture, capstones

50 XP5 min
Theory

Quick recap β€” Modules B7-B9

Modern CSS that didn't exist five years ago. The 4 features that signal "this stylesheet was written in 2026":

  1. `@container` β€” style based on the parent's width, not the viewport's.
  2. `:has()` β€” the "parent selector" that finally landed. .card:has(img) styles only the cards with an image.
  3. `light-dark()` β€” one declaration, two themes, no JS theme toggle wiring.
  4. `@layer` architecture β€” explicit cascade ordering. @layer base, components, utilities and you're done with specificity wars.

If any feels random, redo B6-08 / B8-04 / B5-09 / B8-01 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.

← Previousβœ“ Module complete

Get one Python or web tip a day β€” by email

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