Descrição
Ele examina a largura da imagem do arquivo.
Exemplo
O exemplo a seguir demonstra o uso da largura da imagem no arquivo LESS -
<!doctype html>
<head>
<link rel = "stylesheet" href = "style.css" type = "text/css" />
</head>
<body>
<h2>Welcome to TutorialsPoint</h2>
<h3>The largest Tutorials Library on the web.</h3>
</body>
</html>
Em seguida, crie o arquivo style.less .
style.less
body{
background-image:url("startup.jpg");
width:image-width("startup.jpg");
}
Você pode compilar o arquivo 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
body {
background-image: url("startup.jpg");
width: 1200px;
}
Resultado
Siga estas etapas para ver como o código acima funciona -
Salve o código html acima no misc_example.htm Arquivo.
Abra este arquivo HTML em um navegador, a seguinte saída será exibida.