MENO - URL
Descrizione
Le variabili possono essere utilizzate per contenere gli URL.
Esempio
Il seguente esempio dimostra l'uso di variabili per contenere l' URL nel file LESS -
<html>
<head>
<link rel = "stylesheet" href = "style.css" type = "text/css" />
<title>LESS URLs</title>
</head>
<body>
<div class = "myclass">
</div>
</body>
</html>
Ora crea il file style.less .
style.less
@images: "http://www.tutorialspoint.com";
.myclass {
background : url("@{images}/less/images/less_variables/birds.jpg");
width:800px;
height:500px;
}
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: url("http://www.tutorialspoint.com/less/images/less_variables/birds.jpg");
width: 800px;
height: 500px;
}
Produzione
Segui questi passaggi per vedere come funziona il codice sopra:
Salva il codice html sopra nel file less_variables_interpolation_url.html file.
Apri questo file HTML in un browser, verrà visualizzato il seguente output.