较少的Interpolar字符串未被解析

时间:2013-09-27 12:53:39

标签: less

我有一个简单的插值字符串,无法解析。当我使用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);
}

1 个答案:

答案 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;