我:not
在SASS mixin中有一个CSS选择器,但是它什么也没做:
代码段:
@mixin dropdown-pos($pos:right) {
&:not(.notip) {
@if $comp-tip == true{
@if $pos == right {
top:$dropdown-width * -0.6;
@include tip($pos:$pos);
}
}
}
&.notip {
@if $pos == right {
top: 0;
left:$dropdown-width * 0.8;
}
}
}
在.notip
正在生成的类,但正在为没有生成CSS :not(.notip)
。