MENO - Opzioni di importazione più parole chiave

Descrizione

Il @import (multiple)la parola chiave consente di importare più file con lo stesso nome. Funziona esattamente al contrario di una volta . Questo è stato rilasciato nella versione 1.4.0 .

Esempio

Il seguente esempio dimostra l'uso di più parole chiave nel file LESS:

<html>
   <head>
      <link rel = "stylesheet" href = "style.css" type = "text/css" />
      <title>Import Options Multiple</title>
   </head>

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

Quindi, crea il file style.less .

style.less

@import (multiple) "http://www.tutorialspoint.com/less/multiple.less";
@import (multiple) "http://www.tutorialspoint.com/less/multiple.less";
.para_1 {
   color: red;
}

.para_2 {
   color: blue;
}

Il codice seguente importerà il file multiple.less in style.less dal filehttps://www.tutorialspoint.com/less/multiple.less percorso -

multiple.less

.style {
   font-family: "Comic Sans MS";
   font-size: 20px;
}

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

.style {
   font-family: "Comic Sans MS";
   font-size: 20px;
}

.style {
   font-family: "Comic Sans MS";
   font-size: 20px;
}

.para_1 {
   color: red;
}

.para_2 {
   color: blue;
}

Produzione

Segui questi passaggi per vedere come funziona il codice sopra:

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

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