在nextjs上使用scss进行样式设置无法与.active一起使用

时间:2020-10-17 15:42:38

标签: sass next.js

我正在学习下一个js,我正在使用scss进行样式设计。如图2所示,样式工作正常,但使用.active类时效果不佳 enter image description here enter image description here

1 个答案:

答案 0 :(得分:0)

效果很好,您需要使用:而不是.

&:active {
 background-color: yellow;
}