假设我有以下 style.css 文件:
h1 {
padding: 10px;
background: url('/img/header.png');
}
p {
background: url('/img/p.png');
}
我需要自动为这个 css 制作图像精灵。我需要得到这样的东西:
h1 {
padding: 10px;
background: url('/img/sprite.png') -47px 0;
}
p {
background: url('/img/sprite.png') -130px 0;
}
是否可以通过使用 grunt 任务自动制作?