Introduction to SASS
INTRODUCTION TO SASS: From the previous post , we came to know about BEM methodology. You might feel like naming the class based on BEM would be the toughest one. But this one can be easily resolved by using SASS/SCSS. What is SASS ? S yntactically A wesome S tyle S heet (SASS). It is a CSS preprocessor , which adds special features such as variables, nested rules and mixins. First, what is a CSS preprocessor ? It is nothing but a scripting language that extends CSS by allowing developers to code in one language and that will get compiled to CSS. SASS is one of the preprocessors. There are some other preprocessors like LESS, Stylus etc. ...