LESS划分背景定义

LESS divides background definition

我写在我的 LESS 代码中:

 background: transparent url("images/visalogo.png") no-repeat scroll center 6px / 63px 22px;

但是 LESS 将此字符串呈现为:

background: transparent url("images/visalogo.png") no-repeat scroll center 0.0952381px 22px;

好像LESS把6px分成了63px;

如何避免这个错误?

谢谢哈利。 解决方案 ~"6px / 63px" 帮助了我。