變數 - TerryLee7788/JS_test GitHub Wiki

使用$做為開頭當參數

scss

$link-color: red;
$font-size: 15px;

/*Demo:*/
a{ 
  color: $link-color; 
  font-size: $font-size: 
}

css

a{ 
  color: red; 
  font-size: 15px: 
}