Less可以像sass“@function”一样定义函数吗?

时间:2016-08-24 03:40:25

标签: css less

enter image description here

可以更少定义像sass这样的函数,例如。 @function

1 个答案:

答案 0 :(得分:-1)

.px-to-percent(@px, @base){
  @percent: unit(((@px / @base) * 100), %);
}

.myclass{
  .px-to-percent(456, 1200);
  width: @percent;
}