我目前正在使用 LESS CSS 并尝试创建一个模仿速记参数的默认 css 行为的 mixin。
在 CSS 中你经常声明 ie
margin: 5px 5px 10px;
它被读作
margin: 5px 5px 10px 5px;
我用边界半径混合器尝试了同样的方法
.border-radius (@topright: 5px, @bottomright: @topright, @bottomleft: @topright, @topleft: @bottomright) {}
如果仅使用一个参数调用,我希望它将第一个作为默认值。如果我用 2 个参数调用它,它应该将第一个作为第三个的默认值,将第二个作为第四个的默认值。
有没有办法单独使用 LESS 来实现这种行为?