My FeedDiscussionsHeadless CMS
New
Sign in
Log inSign up
Learn more about Hashnode Headless CMSHashnode Headless CMS
Collaborate seamlessly with Hashnode Headless CMS for Enterprise.
Upgrade ✨Learn more

What is SASS?

HiteshJain's photo
HiteshJain
·Dec 13, 2021·

1 min read

Once you’re comfortable with CSS, the next natural step is to use a preprocessor. The biggest advantage is not having to repeat yourself. “Don’t Repeat Yourself” or "DRY" is a principle in software development aimed at reducing repetition of code, and using SASS we can have the advantage of keeping our CSS Dry.

What is CSS preprocessor?

"A CSS preprocessor is a program that lets you generate CSS from the preprocessor's own unique syntax." MDN

Why use preprocessor?

  • Cleaner code using variables and nesting.
  • Ease of organizing and maintaining the code as we can separate files into modules.
  • Ability to implement logic and calculations in stylesheets.
  • Overall improvement in the workflow can save hours of development time!

What is SASS?

SASS (or Syntactically Awesome Style Sheets) is a tool known as a CSS preprocessor. SASS is a scripting language that provides us the capabilities that regular CSS doesn't have. Using SASS we can write more maintainable, readable, and reusable code.

It gives us various capabilities such as:

  • Variables
  • Partials & Imports
  • Nesting
  • Functions
  • Mixins
  • Control directives
  • Inheritance

In other words, SASS helps us write CSS and organize large stylesheets in a more maintainable way.

Thanks for reading!