0
我寫了一組較少的功能:當參數發送爲空白時,如何避免輸出''?
.b(@a) when (iscolor(@a)) { border:1px solid @a;}
.b(@a) when (ispixel(@a)) { border: @a;}
.b(@a; @b; @c) { border: @a @b @c;}
當這樣調用
.b(none; ''; '');
功能我得到這樣的輸出:
border:none '' '';
我要找:
border:none;
如果我使用
.b(none; ;);
我得到這個錯誤:
expected ')' got ';'
我不希望使用更多的功能。
我正在使用Crunch進行編譯。
任何人都可以幫忙嗎?