LESS - Import Options Less Keyword



Description

The @import (less) will import the file as LESS file, regardless of whatever may be the file extension. This was released in version 1.4.0.

Example

The following example demonstrates the use of less keyword in the LESS file −

<html>
   <head>
      <link rel = "stylesheet" href = "style.css" type = "text/css" />
      <title>Import Options Less</title>
   </head>

   <body>
      <h1>Welcome to Tutorialspoint</h1>
      <p class = "para_1">LESS is a CSS pre-processor that 
      enables customizable, manageable and reusable style sheet for web site.</p>
      <p class = "para_2">LESS is a CSS pre-processor that 
      enables customizable, manageable and reusable style sheet for web site.</p>
   </body>
</html>

Next, create the style.less file.

style.less

@import (less) "http://www.tutorialspoint.com/less/less.txt";
.para_1 {
   color: red;
   .style;
}

.para_2 {
   color: blue;
}

The following code will import the less.txt file into style.less from the https://www.tutorialspoint.com/less/less.txt path −

less.txt

.style {
   font-family: "Comic Sans MS";
   font-size: 20px;
}

You can compile the style.less to style.css by using the following command −

lessc style.less style.css

Execute the above command; it will create the style.css file automatically with the following code −

style.css

.style {
   font-family: "Comic Sans MS";
   font-size: 20px;
}

.para_1 {
   color: red;
   font-family: "Comic Sans MS";
   font-size: 20px;
}

.para_2 {
   color: blue;
}

Output

Follow these steps to see how the above code works −

  • Save the above html code in the import_options_less.html file.

  • Open this HTML file in a browser, the following output will get displayed.

LESS Import Options Less
less_import_options.htm
Advertisements