我改变了
a[title][href] {
font-weight: bold;
}
到
a {
&[title][href] {
font-weight: bold;
}
}
但是sasslint剧照警告,
属性选择器应嵌套在其父属性选择器(force-attribute-nesting)
中
答案 0 :(得分:0)
我只是猜测,但我认为你必须分别嵌套这两个属性,如下所示:
a {
&[title] {
&[href] {
...