我试图选择除radio
和checkbox
之外的所有type
s 的input
元素。
许多人表明,您可以在:not
放置多个参数,但是无论如何尝试使用type
似乎都行不通。
form input:not([type="radio"], [type="checkbox"]) {
/* css here */
}
有任何想法吗?
为什么:不只是使用两个:not
:
input:not([type="radio"]):not([type="checkbox"])
是的,这是故意的
如果您在项目中使用 SASS,那么我已经构建了这个 mixin 以使其按照我们都希望的方式工作:
@mixin not($ignorList...) {
//if only a single value given
@if (length($ignorList) == 1){
//it is probably a list variable so set ignore list to the variable
$ignorList: nth($ignorList,1);
}
//set up an empty $notOutput variable
$notOutput: '';
//for each item in the list
@each $not in $ignorList {
//generate a :not([ignored_item]) segment for each item in the ignore list and put them back to back
$notOutput: $notOutput + ':not(#{$not})';
}
//output the full :not() rule including all ignored items
&#{$notOutput} {
@content;
}
}
它可以以两种方式使用:
选项 1:内联列出被忽略的项目
input {
/*non-ignored styling goes here*/
@include not('[type="radio"]','[type="checkbox"]'){
/*ignored styling goes here*/
}
}
选项 2:首先在变量中列出被忽略的项目
$ignoredItems:
'[type="radio"]',
'[type="checkbox"]'
;
input {
/*non-ignored styling goes here*/
@include not($ignoredItems){
/*ignored styling goes here*/
}
}
任一选项的输出 CSS
input {
/*non-ignored styling goes here*/
}
input:not([type="radio"]):not([type="checkbox"]) {
/*ignored styling goes here*/
}