定义变量

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

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