CSS 解析错误

CSS Parsing errors

我正在使用 CSS Lint 检测特定 css 中的错误和警告。 CSS Lint 检测到 3 个错误:

在下面的 css 代码中:

a.btn,
:not(li.menu_icon a.btn),
.k-button.btn,
input[type=submit].btn, 
input[type=button].btn, 
button[type=submit].btn:not(.gridAddBtn), 
button[type=button].btn:not(.gridAddBtn), 
a[name=butonWorkFlow].btn {
    background-image: none;
    min-width: 90px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

...但我不知道如何更正它。我对 css.

有基本的了解

CSS Lint 不再更新,因此无法识别更新后的 :not() 语法。使用最新的 linter,例如 stylelint,它将通过您的 CSS.

:not(selector) 是 CSS3 的一部分。可能是你用的是低版本。