Can I use the LESS mixins directly in the HTML? For example, this is my LESS mixin.
.padding(@size){
padding: @size;
}
Can I call this in HTML like
<div class="padding(0)"></div>
Can I use the LESS mixins directly in the HTML? For example, this is my LESS mixin.
.padding(@size){
padding: @size;
}
Can I call this in HTML like
<div class="padding(0)"></div>