less
  1. less-passing-ruleset-to-mixin

Passing Ruleset to Mixin - (Less Mixins)

In Less, mixin is a powerful feature that allows you to reuse a set of styles across different parts of your stylesheet. You can also pass arguments to mixins to make them even more versatile. In this tutorial, we'll explore how to pass a ruleset to a mixin in Less.

Syntax

To pass a ruleset to a mixin in Less, you need to use the curly braces {}, like this:

.mixin-name (@ruleset) {
  // mixin code goes here
}

Inside the mixin, you can reference the properties of the passed ruleset using the @ruleset.propertyname syntax.

Example

Let's say you have a set of styles for a button that you want to reuse in multiple places. You can create a mixin like this:

.button-mixin(@ruleset) {
  background-color: @ruleset.backgroundColor;
  color: @ruleset.textColor;
  border: @ruleset.borderSize solid @ruleset.borderColor;
  padding: @ruleset.paddingSize;
}

Then, you can pass a ruleset to the mixin when you want to use it, like this:

.button {
  .button-mixin({
    backgroundColor: #007bff;
    textColor: #fff;
    borderSize: 1px;
    borderColor: #007bff;
    paddingSize: 10px;
  });
}

Output

When you compile the above example, you will get the following CSS output:

.button {
  background-color: #007bff;
  color: #fff;
  border: 1px solid #007bff;
  padding: 10px;
}

Explanation

In this example, we created a mixin called .button-mixin that accepts a ruleset as an argument (@ruleset). Inside the mixin, we referenced the properties of the passed ruleset using the @ruleset.propertyname syntax.

We then used the mixin to style a .button element, passing a ruleset containing the properties we wanted to use to style the button. When we compiled our Less code, it generated CSS with the styles we specified in our ruleset.

Use

Passing rulesets to mixins allows you to reuse a set of styles across different parts of your stylesheet, while still allowing for customization. For example, you could create a set of styles for a navbar, and then use a mixin to apply those styles to different parts of your site.

Important Points

  • When passing a ruleset to a mixin, you must enclose the ruleset in curly braces {}.
  • Inside the mixin, you can reference the properties of the passed ruleset using the @ruleset.propertyname syntax.

Summary

In this tutorial, we learned how to pass a ruleset to a mixin in Less. We covered the syntax, example, output, explanation, use, and important points of passing a ruleset to a mixin. By using this feature, you can create reusable sets of styles in your Less code, and customize them by passing rulesets with the properties you need.

Published on: