MENO - Dichiarazioni di importazione
Descrizione
Un'istruzione import può avere una variabile che contiene un percorso. Ciò è molto utile quando si fa riferimento a una directory principale comune.
Esempio
L'esempio seguente dimostra l'uso di variabili nella dichiarazione di importazione -
<html>
<head>
<link rel = "stylesheet" href = "style.css" type = "text/css" />
<title>LESS Variables in Import Statements</title>
</head>
<body>
<div class = "myclass">
<h2>Welcome to Tutorialspoint</h2>
<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
@path : "http://www.tutorialspoint.com/less";
@import "@{path}/external1.less";
.myclass {
color : #A52A2A;
}
Il codice seguente importerà il file external.less in style.less dalhttps://www.tutorialspoint.com/less/external1.less percorso -
esterno1.less
.myclass {
background: #C0C0C0;
}
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
body {
background: #C0C0C0;
}
p {
color: #A52A2A;
}
Produzione
Segui questi passaggi per vedere come funziona il codice sopra:
Salva il codice html sopra nel file less_variables_interpolation_import.html file.
Apri questo file HTML in un browser, verrà visualizzato il seguente output.