引入Less的Mixin的时候,是否有括号都可以么?

.bordered {    border-top: dotted 1px black;    border-bottom: solid 2px black;}#menu a {    color: #111;
    .bordered;}

.post a {    color: red;
    .bordered;}

.bordered {    border-top: dotted 1px black;    border-bottom: solid 2px black;}#menu a {    color: #111;
    .bordered();}

.post a {    color: red;
    .bordered();}


MYYA
浏览 774回答 1
1回答

扬帆大鱼

Currently and historically, the parentheses in a mixin call are optional, but optional parentheses are deprecated and will be required in a future release.官网在mixins部分有说明,现有版本和历史版本在使用mixin的时候括号是可选的,也就是可有可无,但是在未来的版本中会强制要求使用括号,所以为了将来版本的升级,最好加上括号。参考链接less mixins
打开App,查看更多内容
随时随地看视频慕课网APP