gpt4 book ai didi

CSS "not"选择器不起作用

转载 作者:太空宇宙 更新时间:2023-11-03 20:20:22 24 4
gpt4 key购买 nike

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

此代码有效:

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

但是这段代码不起作用:

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

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

最佳答案

您的 CSS 语法无效。

使用 2 个 :not 选择器:

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

关于CSS "not"选择器不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11932184/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com