Skip to main content

Posts

SASS & SCSS Part II

How Does Sass Work? A browser does not understand Sass code. Therefore, you will need a Sass pre-processor to convert Sass code into standard CSS. This process is called transpiling. So, you need to give a transpiler (some kind of program) some Sass code and then get some CSS code back. Tip:  Transpiling is a term for taking a source code written in one language and transform/translate it into another language.
Recent posts

SASS & SCSS Part I

Sass is a preprocessor scripting language that is interpreted or compiled into Cascading Style Sheets. SassScript is the scripting language itself. Sass consists of two syntaxes. The original syntax, called "the indented syntax," uses a syntax similar to Haml.