Variables are a way to store information that you can re-use later.
In Sass, you assign a value to a name that begins with $ symbol and then you can refer to that name instead of the value itself. But despite their simplicity, they're one of the most useful tools Sass brings to the table. Variables make it possible to reduce repetition, do complex math, configure libraries, and much more.
In Sass, we can store information in variables, like-
Sass uses the $ symbol, followed by a name, to declare variables
$variablename : value;
The following declares a variable named large-font
$large-font: 50px;
Let's a example declares with 4 variables named myFont, myColor, myFontSize, and myWidth. After the variables are declared, you can use the variables wherever you want:
So, when the Sass file is transpiled, it takes the variables (myFont, myColor, etc.) and outputs normal CSS with the variable values placed in the CSS, like this:
Variables are only available at the level of nesting where they're defined.
Let's look at an example
Above, will the color of the text inside a <p> tag be red or green? It will be red!
The other definition, $myColor: green; is inside the <h1> rule, and will only be available there!
So, the CSS output will be
it is the default behavior for variable scope.
The default behavior for variable scope can be overridden by using the !global switch.
!global indicates that a variable is global, which means that it is accessible on all levels.
Add !global in above example:
Now the color of the text inside a <p> tag will be green!
Global variables should be defined outside any rules. It could be wise to define all global variables in its own file.
To know about Nesting in SASS. We will learn in next chapter Click