Less 變數介紹

在 Less 中,與 Sass 或 Shell 不同,變數是通過以 @ 符號開頭的名稱來宣告的。例如:

@sky-blue: #87ceeb;

body {
  background-color: @sky-blue;
}

上面的例子給你:

body {
  background-color: #87ceeb;
}

這裡解釋瞭如何宣告變數並使用它們。