我正在为我的项目运行scss lint,并报告了一些我不确定如何修复的内容。
我的scss
#test-id {
.table {
.test {
color: #fff;
}
}
}
Scss抱怨
MergeableSelector: Merge rule `#test-id` with rule on line 7
我不知道如何在我的情况下合并选择器。任何人都可以帮我吗?谢谢!
答案 0 :(得分:1)
如果不知道第7行的内容,我猜它会告诉你这样做:
#test-id .table .test {
color: #fff;
}
因为在这种情况下不需要嵌套。