HTML/CSS - 21

HTML/CSS - 21: CSS Architecture & Custom Properties

Learn how to write maintainable, scalable CSS using variables and organized structure.

✦ HTML Editor
▶ Live Output
👀 Show Solution
:root {
  --primary: #00ff9d;
  --bg: #0a0a0a;
  --text: #ffffff;
}

body {
  background: var(--bg);
  color: var(--text);
}