1、sass背景图封装使用,避免写一个又一个url链接
//style.sass // $img:"../image"; //本地路径 $img:"https://XXX/image";//服务器路径 //使用 .box{ ... background:url(‘#{$img}/btn.png‘) no-repeat; background-size: 100%; }
sass中代码使用
原文:https://www.cnblogs.com/cdj61/p/13300882.html