Função LESS - get - unit

Descrição

A função get - unit retorna sua unidade onde o argumento está presente com número e unidades. Se o argumento não contiver nenhuma unidade, ele retornará um valor vazio.

Exemplo

O exemplo a seguir demonstra o uso de get unit no arquivo LESS -

misc_example.htm

<!doctype html>
   <head>
      <link rel = "stylesheet" href = "style.css" type = "text/css" />
   </head>

   <body>
      <div class = "list">
         <h2>Welcome to TutorialsPoint</h2>
         <p>The largest Tutorials Library on the web.</p>
      </div>
   </body>
</html>

Em seguida, crie o arquivo style.less .

style.less

.list {
   font-size:get-unit(30px);
   padding-left:get-unit(25);
}

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

.list {
   font-size: px;
   padding-left: ;
}

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.