background: url(${@http}/img/icon/daorug@2x.png
) no-repeat center 3rem / auto 25%;
@http是一个变量
这样书写会不现实,也没有解析!
请问该怎么办?
淡淡烟草味2017-05-19 10:32:55
找到答案了 应该是background: url('@{http}/img/icon/daorug@2x.png') no-repeat center 3rem / auto 25%;
为情所困2017-05-19 10:32:55
调用方式错了,不用那个美元符号
@http: http://www.yoursite.com; // 对变量@http的定义, 习惯上写在less文件开头
background: url(@http/img/icon/daorug@2x.png) no-repeat center 3rem / auto 25%;