VOOZH about

URL: https://www.geeksforgeeks.org/css/sass-full-form/

⇱ SASS full form - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

SASS full form

Last Updated : 12 May, 2020
👁 Image
SASS stands for Syntactically Awesome Style Sheets. It was designed by Hampton Catlin and developed by Natalie Weizenbaum. Sass is a CSS pre-processor. Sass reduces the repetition of CSS and hence saves time. It is a stylesheet language. It is completely compatible with all versions of CSS. It is a language that allows you to write CSS in a more convenient and efficient way. There are two ways to write Sass, one is using SASS syntax and the other is SCSS syntax. It allows you to write DRY(Don't Repeat Yourself) code so that the code will be faster, more efficient, and easier to maintain. When to use SASS? When stylesheets are larger, more complex, and harder to maintain then CSS pre-processor SASS can be used. SASS lets you use features that do not exist in CSS, like variables, nested rules, mixins, imports, inheritance, built-in functions, and other stuff. Features of SASS:
  • Sass is fully compatible with CSS.
  • It is powerful than CSS.
  • It is a superset of CSS.
  • It compiles to readable CSS.
  • It supports variables, nesting and mixins.
Example: CSS Example: SASS Output: 👁 Image
Merits of SASS:
  • Less writing than CSS.
  • Allows you to reuse code.
Demerits of SASS:
  • Browsers don't understand SASS so it has to be converted to CSS.
  • Hard to troubleshoot.
Comment
Article Tags: