有没有办法从 scss 中的扩展选择器中删除声明?
示例是:
#logo {
float: left;
width: 75px;
height: 28px;
background: url("/images/logo.png") no-repeat 0 0;
a {
@extend #logo;
background: none;
display: block;
text-decoration: none;
text-indent: -999999em;
overflow: hidden;
}
}
而不是使用
背景:无;