我希望使用scss定位ID内的类,以便编译后的CSS如下:

#template1 .heroText, #template2 .heroText {
    text-align:center;
}
#template3 .heroText, #template4 .heroText {
    text-align:left;
}


以下scss(逗号分隔的ID)对我似乎无效:

#template1, #template2{
    .heroText {
        text-align:center;
    }
}
#template3, #template4{
    .heroText {
        text-align:left;
    }
}


这应该是可行的还是以不同的方式在scss中定位多个ID,因为我可以找到的所有文档都与类有关,而不与ID有关

最佳答案

感谢您的所有帮助,我将问题一直跟踪到.sass-cache文件夹。删除此代码后,一旦对scs运行grunt,我的编译后的css将按预期显示。

关于css - scss定位多个ID,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/50101981/

10-12 07:22