How to define a variable in SASS?

Arun Arun
Arun Arun

Posted On: Feb 22, 2018

 

We can define a variable in sass

  • The variable means to store all types of values and data like Boolean, String, numeric, etc.
  • This variable value can use after time as per requirement.
  • The SASS variable syntax is below.
$variable_name: variable_value; 
  • example of SASS variable
$simple: blue;
$primary:5px;
.p{
Background-color:$simple;
}
.h1{
color: $simple;
font-size: $primary;
}

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    SASS Interview Questions

    What is SASS?

    The sass is the acronym of synthetically Awesome Style Sheet. This is a CSS pre-processor. The sass used to minimize the repetition of CSS style tags and save time. This is a more stable extension ...

    SASS Interview Questions

    Who is the father of SASS?

    The SASS language primarily designed by Hampton Catlin and developed by Natalie Weizenbaum. After the primary version, Natalie Weizenbaum and Chris Eppstein are continuing for SASS with a scripting...

    SASS Interview Questions

    Enlist few features of SASS?

    The Sass is time-saving and minimizes the coding language. Some basic features of SASS which come daily basis is below. List and @each directive together. The list is an initial feature of sass but...