Is there a way to set a common image path for LESS files?

前端 未结 6 1360
面向向阳花
面向向阳花 2020-12-05 03:58

I am using the LESS styling language.

Consider the following CSS:

.side-bg
{
    background:url(../img/layout/side-bg.jpg) top no-repeat;    
}
         


        
6条回答
  •  借酒劲吻你
    2020-12-05 04:47

    The solution:

    .side-bg
    {
        background : ~"url( '@{image-path}/layout/side-bg.jpg' )" top no-repeat;
    }
    

提交回复
热议问题