定义变量

/* 变量定义 */
:root {
  --main-color: #06c;
}
/* 变量使用 */
#foo h1 {
  color: var(--main-color);
}

编程技巧