1

解析されない単純な極間の文字列があります。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);
}
4

1 に答える 1

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;
于 2013-09-27T13:50:27.180 に答える