Use less abbreviated css background image style

Defined in the less file

.bg(@file) {
    
    
  background: url('@{file}') no-repeat;
  background-size: 100% 100%;
}

在less文件中其他设置背景图的地方使用 即可完成简写
.bg('***.jpg');

当然less文件中也支持定义变量
@boxWidth: 1000px; //盒子宽度
width: @boxWidth;

Writing less style code is faster and easier

Guess you like

Origin blog.csdn.net/weixin_43956521/article/details/110916828