Reputation: 81
I was using mixin proprieties in SASS an i was wondering if there were a way to use variables inside mixins. Here's a very simply example
SASS
=overflow($axe,$show)
overflow-$axe: $show
SCSS
@mixin overflow($axe,$show){
overflow-$axe: $show;
}
Thanks to all for further answers :)
Upvotes: 1
Views: 45
Reputation: 11857
Yes, it is possible and called interpolation:
@mixin overflow($axe,$show){
overflow-#{$axe}: $show;
}
body {
@include overflow('x', 'hidden');
}
Upvotes: 2