Codexy
Codexy

Reputation: 81

Sass mixin variable inside proprieties

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

Answers (1)

chrisg86
chrisg86

Reputation: 11857

Yes, it is possible and called interpolation:

@mixin overflow($axe,$show){
    overflow-#{$axe}: $show;
}

body {
    @include overflow('x', 'hidden');
}

Upvotes: 2

Related Questions