Sass and browser display

Does anyone know how a browser views SASS? I found out how you can make a sass file, or how you can convert a .css file to a .sass and compile it into a new .css file, which is more or less clear to me. But in the end, you again get a new .css file and add it to html. So what happens to the .sass file, where, at what point (if any), does it become active during the page rendering process?

0
source share
1 answer

SASS is a CSS pre-processor scripting language, or you can say that it is a scripting language that is interpreted in CSS, and SASS is NOT used by the browser during the rendering of the page, and the generated CSS is used by the browser for the rendering styles of a respected page.

SASS is a scripting language that has programming functions such as any other programming language or scripts such as javascript , python , etc. It has loops, conditional statements, functions that can be used like any other programming language.

In SASS mode, the advantages of programming techniques are used to write styles more efficiently and quickly.

+1
source

Source: https://habr.com/ru/post/1272067/


All Articles