SASS vs SCSS in CSS
![Image](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiy3fPq7D2P3GtJbXESVDSovOhCrls_XWWhldYyCb6DLSF6dijpqayIjfzLwzWnQO80zlk0oCB18XWojdR65f2SdFN9LqiINDuhdK4gB5g7gzxqfC1mMDIj9nt7-G6H4XwcCBAZGxCb-d0/s320/sass.png)
SCSS and SASS is a preprocessor that lets you use features that aren't a part of the wider CSS standard ye t. and provides better workflows for maintaining your stylesheets. SASS SASS (Syntactically Awesome Stylesheets) is a CSS pre-processor that lets you use variables, mathematical operations, mixins, loops, functions, imports, and other interesting functionalities that make writing CSS much more powerful. In some ways, you may think of SASS is a style sheet extension language because it extends the standard CSS characteristics by introducing the benefits of a basic programming language. So SASS will compile your code and generate the CSS output a browser can understand. SCSS SCSS is the main syntax for the SASS which builds on top of the existing CSS syntax. It makes use of semicolons and brackets like CSS (Cascaded Style Sheets) List down the main difference between SAAS and SCSS. SASS is used when we need an original syntax. SASS follows strict indentation. SASS has a l...