最佳答案
我试图选择input
元素的所有type
除了radio
和checkbox
。
许多人已经证明你可以在:not
中放置多个参数,但使用type
似乎不起作用,无论如何我试一试。
form input:not([type="radio"], [type="checkbox"]) {/* css here */}
有什么想法吗?