CSS :not() 选择器用于选择非指定元素/选择器的每个元素。
例如,如果您希望input[type=“text”]的样式不作用到第三个input上,可以使用以下代码:
input[type="text"]:not(.no-red) {display: block;width: 300px;height: 30px;margin-bottom: 20px;padding-left: 10px;color: red;}
在这个例子中,:not(.no-red)表示不应用于带有“no-red”类的输入元素。