ZaZaKi, a web developer Between Manchester UK & Rotterdam NL. © 2015-2024.

Sass Variables

Sass vaiables example

Sass (scss)
$myFont: Helvetica, sans-serif;
$myColor: red;
$myFontSize: 18px;
$myWidth: 680px;

body {
font-family: $myFont;
font-size: $myFontSize;
color: $myColor;
}

#container {
width: $myWidth;
}

 

The output CSS


body {
font-family: Helvetica, sans-serif;
font-size: 18px;
color: red;
}

#container {
width: 680px;
border: 1px blue double;
}