0

我想知道为什么我不能background-color: red;在我的 scss 文件上添加属性:

#my_container {
    background-color: red; # Added this line and #efefef doesn't work either

Grunt 上的错误打印:

src/sass/app_2/_common/layout/layouts.scss:7:27
  ✖  7:27  Unexpected named color red  color-named

这可能是来自 Styelint 或编译器的错误。如果您需要任何详细信息,请告诉我。

4

1 回答 1

4

该错误来自 Stylelint,因为您有一个禁用命名颜色的规则:https ://stylelint.io/user-guide/rules/color-named/

于 2018-05-23T09:17:07.880 回答