MENO - Variabili predefinite

Descrizione

La variabile predefinita ha la capacità di impostare una variabile solo quando non è già impostata. Questa funzione non è richiesta perché le variabili possono essere facilmente sovrascritte definendole in seguito.

Esempio

L'esempio seguente mostra l'uso delle variabili predefinite nel file LESS -

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

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

Ora crea il file style.less .

style.less

@import "http://www.tutorialspoint.com/less/lib.less"; // first declaration of @color
@color: green; // this will override @color defined previously
p {
   color : @color;
}

Il seguente codice importare il lib.less file in style.less dalhttps://www.tutorialspoint.com/less/lib.less percorso -

lib.less

@color: blue;

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

p {
   color: green;
}

Produzione

Segui questi passaggi per vedere come funziona il codice sopra:

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

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