现在我有一个课程,我@extend
- 所有button
元素。但是,我不希望将其扩展为单个按钮,并且不希望更改HTML以使其成为链接。
有没有办法删除SASS中特定规则的@extend
?
答案 0 :(得分:6)
没有。您的选择是:
对你来说最难的解决方法是使用:not selector:
// style all buttons, except for ones with the "default" class on them
button:not(.default) { %extend theStyles }