Write maintainable CSS with variables, nesting, mixins, modules, maps, and compiled output.
Lessons
Divide numbers the modern, non-deprecated way.
Division with math.div is easiest to learn by reading the example, changing it, and observing the result.
@use 'sass:math';
.col {
// Use math.div, not the deprecated / operator
width: math.div(100%, 3); // 33.333%
}
$ratio: math.div(16, 9);Practice the Division with math.div example in a small scratch file, then explain what changed and why.