Write maintainable CSS with variables, nesting, mixins, modules, maps, and compiled output.
Lessons
Group related properties like font and margin.
Nested Properties is easiest to learn by reading the example, changing it, and observing the result.
.card {
font: {
family: system-ui, sans-serif;
size: 1rem;
weight: 600;
}
margin: {
top: 1rem;
bottom: 2rem;
}
}Practice the Nested Properties example in a small scratch file, then explain what changed and why.