我是触控笔的新手。尝试列出诸如.mt--20, .mt--30, .mt--35 etc.
我收到此错误
我的手写笔代码:
margin(postfix, side, numbers)
.m{postfix}
for n in numbers
&--{n}
margin-{side} {n}px
for n in numbers
&--{n}-xs
@media $media-max-1366
margin-{side} {n}px
for n in numbers
&--{n}-lg
@media $media-min-1366
margin-{side} {n}px
list = 5 10 15 20 25 30 35 40 45 50 55 60
margin(b, bottom, list)
margin(t, top, list)
margin(l, left, list)
margin(r, right, list)
我在做什么错了?
答案 0 :(得分:0)
错误是由于您插值Source Target Label Weight
0 1 anger 2
0 1 anticipation 1
.
.
.#etc
。在n
之后,您不需要插值。
解决方案:
margin-{side}
这里是CodePen,您可以在其中查看编译的源(无错误)。