1. 程式人生 > >less:避免編譯

less:避免編譯

port code nbsp 免編譯 () alc pre 優先 idt

.box {
  width: ~"calc(300px - 30px)";
}

編譯成css

.box {
  width: calc(300px - 30px);
}
 

important提升優先級

.mixin() {
  color: #900;
  background: #F7BE81;
}
h2 {
  .mixin() !important;
}

編譯成css

h2 {
color: #900 !important;
background: #F7BE81 !important;
}

less:避免編譯