我有一个简单的插值字符串,无法解析。当我使用lessPHP时它可以工作,但是当我使用lesscss js时它不起作用。
li.nl a{background:url(/@{localImages}/icons/flags/gif/nl.gif) no-repeat center center;}
变量:
@localImages: "../images/local/";
回报:
.topbar #block-locale-language li.nl a {
background: url("/@{localImages}/icons/flags/gif/nl.gif") no-repeat scroll center center rgba(0, 0, 0, 0);
}
答案 0 :(得分:4)
改变这个......
background:url(~"@{localImages}icons/flags/gif/nl.gif") no-repeat center center;
产生这个:
background: url(../images/local/icons/flags/gif/nl.gif) no-repeat center center;