我正在使用minify
现在我有css文件“style.css”
body{
background: url(image.png);
}
当制作迷你时,将在/path/to/min/dir/f=style.css中 因为这个我想让背景的网址充满 像这样的东西
body{
background: url({$url}/image.png);
}
并且在mimify类中make make或replace就像smarty
一样像这样的咪咪
body{background: url(/path/to/image.png);}
答案 0 :(得分:1)
你不能缩小并拥有动态值(它应该用于缓存)。
如果您有动态网址,请使用内联CSS或将CSS添加到html / php文件中的标头,而不是CSS文件中