16.2 From Sass/SCSS to CSS
Of course, for styling purposes, the web browser can’t do anything with the SCSS file shown on the left in Table 16.2. A file with the SCSS syntax has the extension *.scss (for the Sass syntax, it’s *.sass). For this purpose, the CSS preprocessor must first convert (compile) the SCSS file into a CSS file, which you then also use for the web browser. On the right-hand side in Table 16.2, you can see the result of the SCSS file after the CSS preprocessor run as a CSS file.
Table 16.2 From an SCSS File to a CSS File after the CSS Preprocessor Run