https://lovelacelee.github.io/cnTIL
This project is maintained by lovelacelee
CSS原生语法也有变量,与Sass变量使用方法有本质区别
原生css的变量定义
element { --main-bg-color: green; }
原生css变量的使用
element { background-color: var(--main-bg-color) }
$-private_var: 3 px;