关于在页面上合并选择器的Sass文档
http://sass-lang.com/documentation/file.SASS_REFERENCE.html#placeholders
遵循sass代码
#admin .tabbar a{
font-weight: bold;
}
#demo .overview .fakelink{
@extend a;
}
应编译为
#admin .tabbar a,
#admin .tabbar .overview .fakelink,
#admin .overview .tabbar .fakelink {
font-weight: bold;
}
那么为什么这个编译代码在将CSS转换为sass时不会产生相同的输出 使用像http://css2sass.herokuapp.com/
这样的转换器