LESS - Mixin & return values



Description

Mixins are similar to functions and the variables that are defined in a mixin will behave as its return values.

Example

The following example demonstrates the use of mixin & return values in the LESS file −

<html>
   <head>
      <link rel = "stylesheet" href = "style.css" type = "text/css" />
      <title>Mixins & return values</title>
   </head>

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

Next, create the style.less file.

style.less

.padding(@x, @y) {
   @padding: ((@x + @y) / 2);
}

.myclass{
   .padding(80px, 120px);  // call to the mixin
   padding-left: @padding; //  returns the value
}

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

.myclass {
   padding-left: 100px;
}

Output

Follow these steps to see how the above code works −

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

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

LESS Mixin & return values
less_mixins_as_functions.htm
Advertisements