... of the child @mixin last($num) { &:nth-last-child(-n + #{$num}) { @content; } ... the child @mixin all-but($num) { &:not(:nth-child(#{$num})) { @content; } ...
確定! 回上一頁