Descrição
As variáveis podem ser usadas para conter os URLs.
Exemplo
O exemplo a seguir demonstra o uso de variáveis para manter URL no arquivo LESS -
<html>
<head>
<link rel = "stylesheet" href = "style.css" type = "text/css" />
<title>LESS URLs</title>
</head>
<body>
<div class = "myclass">
</div>
</body>
</html>
Agora crie o arquivo style.less .
style.less
@images: "http://www.tutorialspoint.com";
.myclass {
background : url("@{images}/less/images/less_variables/birds.jpg");
width:800px;
height:500px;
}
Você pode compilar o style.less para style.css usando o seguinte comando -
lessc style.less style.css
Execute o comando acima; ele criará o arquivo style.css automaticamente com o seguinte código -
style.css
.myclass {
background: url("http://www.tutorialspoint.com/less/images/less_variables/birds.jpg");
width: 800px;
height: 500px;
}
Resultado
Siga estas etapas para ver como o código acima funciona -
Salve o código html acima no less_variables_interpolation_url.html Arquivo.
Abra este arquivo HTML em um navegador, a seguinte saída será exibida.