Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.0k views
in Technique[技术] by (71.8m points)

css - Combine extend and mixin in with same rules

Okey! I have couple of extends in sass like

%heading
%paragraph
%gutter

and so on...

I want to reuse thouse in media queries, but that doesnt work. I know that.

Then i came up with the idea to have all my extends as mixins too. So when i want them in a media query i simply use mixin. for example

.my-widget {
    @extend %gutter;
    @media.... {
        @include gutter-other;
    }
}

and because i dont want to write all my rules again. How do i write my sass then?

I tried

%my-extend, @mixin my-extend {
   ...
}

but that didnt work.

Any ideas how to work with this?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

No, you can't combine them that way. You'll have to write a mixin that is invoked by your extend class and anything inside of a media query.

@mixin my-extend {
    background: yellow;
}

%my-extend {
    @include my-extend;
}

.foo {
    @extend %my-extend;
}

.bar {
    @extend %my-extend;
}

.baz {
    @media (min-width: 30em) {
        @include my-extend;
    }
}

Output:

.foo, .bar {
  background: yellow;
}

@media (min-width: 30em) {
  .baz {
    background: yellow;
  }
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...