谁能解释在 SASS 中实现缓存破坏器的最佳实践方法?这意味着,在我的 CSS 的“编译”时,它会在图像文件中附加一个时间戳。例如,
以下 SASS 代码:
!sprite="gubs.gif"
ul
li.selected
:background
:image= image_url(!sprite)
:repeat no-repeat
:position= "right" -222px
应该产生:
ul li.selected {
background: url(../images/gubs.gif?123456789) no-repeat right -222px
}
在 ruby 工具榨汁机中,这是自动为您完成的。但我似乎无法通过 Compass 找到有关如何在 SASS 中执行此操作的文档。