我想创建一个执行以下操作的函数:
.sprite-size (@width,@height,@x,@y) {
width:~'@{width}px';
height:~'@{height}px';
background: @sprites no-repeat -~'@{x}px' -~'@{y}px';
}
我想在@x
和@y
中传递一个正值,然后在输出中取消它们。上面的LESS函数输出以下示例:
//LESS
.header-language-selection {
.sprite-size(44,21,312,0);
}
//Outputs CSS
.header-language-selection {
width: 44px;
height: 21px;
background: url('/Content/images/sprites.png') no-repeat - 312px - 0px;
}
如您所见,输出结果包含-
和px
之间的空格。有没有办法可以删除它并达到我想要的目的?
我希望该行的输出为:background: url('/Content/images/sprites.png') no-repeat -312px -0px;
答案 0 :(得分:56)
在所需的符号和单位中乘以1
。所以:
.sprite-size(@width, @height, @x, @y) {
width: @width*1px;
height: @height*1px;
background: @sprites no-repeat @x*-1px @y*-1px;
}
答案 1 :(得分:7)
你也可以试试这个:
.sprite-size (@width,@height,@x,@y) {
width: ~"@{width}px";
height: ~"@{height}px";
background: @sprites no-repeat @x*(-1px) @y*(-1px);
}