MENO - Non emettere il mixin

Descrizione

È possibile creare un mixin e farlo scomparire nell'output semplicemente inserendo le parentesi dopo di esso.

Esempio

Il seguente esempio dimostra l'uso di mixin nel file LESS -

<html>
   <head>
      <link rel = "stylesheet" href = "style.css" type = "text/css" />
      <title>LESS Mixins</title>
   </head>

   <body>
      <div class = "myclass">
         <h1>Welcome to Tutorialspoint</h1>
         <p>LESS is a CSS pre-processor that enables customizable, 
         manageable and reusable style sheet for web site.</p>
      </div>
   </body>
</html>

Quindi, crea il file style.less .

style.less

.a() {
   padding-left: 100px;
}

.myclass {
   background : #64d9c0;
   .a;
}

Puoi compilare style.less in style.css usando il seguente comando:

lessc style.less style.css

Esegui il comando precedente; creerà automaticamente il file style.css con il seguente codice:

style.css

.myclass {
   background: #64d9c0;
   padding-left: 100px;
}

Produzione

Segui questi passaggi per vedere come funziona il codice sopra:

  • Salva il codice html sopra nel file less_mixin_not_outputting.html file.

  • Apri questo file HTML in un browser, verrà visualizzato il seguente output.