0

我不能在“非”选择器中放置两个不同的规则示例:

此代码有效:

input:not([type=submit]) {
  // Styling here
}

但这段代码不起作用:

input:not([type=submit], [type=reset]) {
  // Styling here
}

为什么第二个代码不起作用?

4

1 回答 1

6

您的 CSS 语法无效。

使用 2 个:not选择器:

input:not([type=submit]):not([type=reset]) {
  // Styling here
}
于 2012-08-13T10:15:19.200 回答