- What does LESS give up when compiled to CSS?
- Variables, mixins, nesting, arithmetic, and guards all get resolved. The output is a pure CSS file you can ship directly.
- Are LESS escaping functions preserved?
- e() and tilde-quoted strings evaluate to their unescaped value; the output is raw CSS with no trace of the escape.
- How does nesting expand?
- Each level becomes a compound selector. `.a { .b { color: red; } }` becomes `.a .b { color: red; }`. Parent references (&) resolve correctly.
- Is the output dev-ready or production-ready?
- Dev-ready. For production, run through a minifier (CSS Minify) to strip whitespace.