From what I've been reading, SASS is a language that makes CSS more powerful with variable and math support.
What's the difference with SCSS? Is it supposed to be the same language? Similar? Different?
|
|
|
SASS is a CSS pre-processor with syntax advancements. Style sheets in the advanced syntax are processed by the program, and turned into regular CSS style sheets. However, they do not extend the CSS standard itself. The main reason for this is the addition of features that CSS painfully lacks (like variables). Re the difference between SCSS and SASS, the text on the SASS home page should answer the question:
However, all this works only with the SASS pre-compiler which in the end creates CSS. It is not an extension to the CSS standard itself. |
||||
|
|
I'm one of the developers who helped create Sass. The difference is UI. Underneath the textual exterior they are identical. This is why sass and scss files can import each other. Actually, Sass has four syntax parsers: scss, sass, CSS, and less. All of these convert a different syntax into an "Abstract Syntax Tree" which is further processed into CSS output or even onto one of the other formats via the sass-convert tool. Use the syntax you like the best, both are fully supported and you can change between them later if you change your mind. |
|||
|
From the homepage of the language
SASS is an interpreted language that spits out CSS. The structure of Sass looks like CSS (remotely), but it seems to me that the description is a bit misleading; it's not a replacement for CSS, or an extension. It's an interpreter which spits out CSS in the end, so Sass still has the limitations of normal CSS, but it masks them with simple code. |
|||
|
|