SASS (original) (raw)

Last Updated : 23 Jul, 2025

**SASS (Syntactically Awesome Style Sheets) is a powerful and popular CSS preprocessor that extends the capabilities of standard CSS. It offers numerous features such as variables, nested rules, mixins, and functions, making CSS more maintainable, reusable, and easier to write. Sass files are compiled into standard CSS for browser interpretation. SASS helps streamline your workflow and keeps your stylesheets organized and efficient.

SASS-copy

Since browsers are unable to read a SASS file, so, we are required to use a SASS compiler that converts its file to a normal CSS file. It also helps reduce the overall length of the code by discarding the repeated CSS code and therefore saves time. It was designed by Hampton Catlin and developed by Natalie Weizenbaum in 2006.

What is SASS?

SASS (Syntactically Awesome Style Sheets) is a powerful and popular CSS preprocessor that extends the capabilities of standard CSS. It offers numerous features such as variables, nested rules, mixins, and functions, making CSS more maintainable, reusable, and easier to write. SASS helps streamline your workflow and keeps your stylesheets organized and efficient.

Why Use SASS?

The conversion of one syntax to another can automatically be done using the _sass-convert command-line tool in the file. SASS can be implemented in 5 ways:

SASS Tutorial

**Installation Step

We will follow the below steps to install the SASS through Package Manager.

**Step 1: To install SASS, first make sure that node and npm are already installed in the system. If not, then install them using the instructions given below.

npm init

**Step 2: Now to install SASS one simple command is used:

npm install node-sass --save

**Note: – –save in the above command is used to save the SASS in dependencies of JSON file. Now SASS has been installed in your system successfully.

**Step 3: To work with SASS, go to the package.json file in your project, i.e. if you are working with VSC, open your project there and then open the package.json file.

You will get a package.json file like:

{
"name": "sass-ex",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo "Error: no test specified" && exit 1",
},
"author": "",
"license": "ISC"
}

Remove the “test” script and add your own script of name compile: sass (any other name can be chosen), give the link of your sass file as a target. package.json should look like this:

{
"name": "sass-ex",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"compile:sass": "node-sass scss/style.scss css/style.css"
},
"author": "",
"license": "ISC"
}

Now go back to the command prompt and run the command:

npm rum compile:sass

Or just add a node-sass script like this:
Open the package.json file in your text editor of choice, and add the following line inside the “scripts” object:

"scss": "node-sass --watch assets/scss -o assets/css"

package.json file looks like this:

{
"name": "sass-ex",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo "Error: no test specified" && exit 1",
"scss": "node-sass --watch assets/scss -o assets/css"
},
"author": "",
"license": "ISC"
}

Save the file and close it. Now, in the root of the project directory, run the command (as given below) to start watching for any changes to your .scss files.

npm run scss

**Approach

Now see how to make effective use of the important features of SCSS like variables, nesting, mixins, and operators.

**Example: The below example describe the SASS code which is converted to a CSS file, which is then utilized in the index.html file.

index.html `

SASS Tutorial

GeeksforGeeks

SASS

This example illustates the use of SASS

GeeksforGeeks - A Computer Science portal for geeks.

style.scss

$bg: #909290; $textColor: #ffffff; $align: center; $font: sans-serif; $decoration: none; $text: green;

body { background: $bg; color: $textColor; text-align: $align; font-family: $font; }

h1 { color: $text; }

a { text-decoration: $decoration; color: $text; }

result.css

body { background: #454745; color: #ffffff; text-align: center; font-family: sans-serif; }

h1 { color: green; }

a { text-decoration: none; color: green; }

`

**Output:

**Advantages of SASS