Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
现在我有一个类,我正在@extend学习所有button元素。但是,我不想将它扩展到一个按钮,并且不想诉诸于更改 HTML 以使其成为链接。
@extend
button
有什么方法可以删除@extendSASS 中的特定规则?
不,您的选择是:
对您来说最不痛苦的解决方案是使用 :not 选择器:
// style all buttons, except for ones with the "default" class on them button:not(.default) { %extend theStyles }