我的SCSS文件中有几个CSS类:
#close {
position:absolute;
background:url(../images/close.png) 0 0 no-repeat;
width:30px;
height:30px;
display:block;
top:-15px;
right:-15px;
float: right;
margin: 0;
padding: 0
}
#close:hover {
background:url(../images/close_hover.png) 0 0 no-repeat;
}
我想知道是否可以将此SCSS文件中的图像引用替换为驻留在为图像精灵生成的不同SCSS文件中的类。
.modal_close { width: 33px; height: 33px; background-position: 0 0 }
.modal_close_hover { width: 33px; height: 33px; background-position: -390px -51px }