我正在尝试在我的 CSS3 文件中使用变量,我使用了以下代码
:root{
--nvc-theme: green;
--nvc-themelite: grey;
}
这是我用来在我的项目中声明两个变量的 css 但是当我用 csslint 编译 CSS 时它显示错误
ERROR: Expected RBRACE at line 17, col 3. This rule looks for recoverable syntax
errors. (errors) Browsers: All
它也显示
WARNING: Rule is empty. Rules without any properties specified should be removed.
(empty-rules) Browsers: All
我知道这个警告,因为在根元素中我只使用了变量,我没有声明任何 css 属性,只是变量,所以它显示了一个警告,但是我该如何克服这种情况。任何解决方案都有很大帮助。谢谢