可以:not()伪
我试图选择除radio
和checkbox
以外的所有type
的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*/
}
从CSS 4开始,在:not
选择器中使用多个参数成为可能(请参阅此处)。
在CSS3中,not选择器只允许1个选择器作为参数。 在4级选择器中,它可以将选择器列表作为参数。
例:
/* In this example, all p elements will be red, except for
the first child and the ones with the class special. */
p:not(:first-child, .special) {
color: red;
}
不幸的是,浏览器支持有限。 目前,它只适用于Safari。
链接地址: http://www.djcxy.com/p/88391.html