Why doesn't the browser understand SASS code directly?
Browsers only understand CSS, not SASS. SASS must be compiled into CSS before the browser can apply styles. This is why you link the compiled CSS file, not the SASS file.
💡 Think of SASS as a recipe and CSS as the cooked meal the browser eats.
Why can't I see the SASS variable $primary-color in the browser's developer tools?
SASS variables exist only during compilation. The browser sees only the final CSS with actual color values, not the variable names.
💡 Variables are like shortcuts used by the chef, not ingredients on the plate.
Why does nesting in SASS not appear as nested selectors in the browser?
Nesting in SASS is a way to write CSS more cleanly. The compiler converts nested rules into normal CSS selectors that browsers understand.
💡 Nesting is like organizing your notes; the final output is flat and simple.