我不能在“非”选择器中放置两个不同的规则示例:
此代码有效:
input:not([type=submit]) {
// Styling here
}
但这段代码不起作用:
input:not([type=submit], [type=reset]) {
// Styling here
}
为什么第二个代码不起作用?
我不能在“非”选择器中放置两个不同的规则示例:
此代码有效:
input:not([type=submit]) {
// Styling here
}
但这段代码不起作用:
input:not([type=submit], [type=reset]) {
// Styling here
}
为什么第二个代码不起作用?