简体   繁体   中英

Can I add a variable to a mixin function name in Less?

Is this possible to do in some way I don't know? I'm trying to add a variable in the mixin function name.

@mybar: Test;

.mymixin() {
  padding: 10px;
}

.mymixin@{mybar}() {
  padding: 10px;
}

.test {
  .mymixinTest();
}    

I think it should work if you do:

.myMixin(@myvar) {
      .myMixin@{myvar} {
          //your css
       }
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM