Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

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

如何让scss编译时将@media合并到整个css的最后

现在在scss中使用@media会编译成多个@media

eg:

.a {
  @media screen and (max-width: 320px) {
    // css
  }
}
.b {
  @media screen and (max-width: 320px) {
    // css
  }
}

会编译成

@media screen and (max-width: 320px) {
  .a {
    // css
  }
}
@media screen and (max-width: 320px) {
  .b {
    // css
  }
}

如何能编译成

@media screen and (max-width: 320px) {
  .a {
    // css
  }
  .b {
    // css
  }
}

这样可以让整个css更小嘛~


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

1 Answer

0 votes
by (71.8m points)

自己找到方法了 https://github.com/Se7enSky/g...

因为我用 gulp 就装了延伸的 gulp 插件 https://github.com/avaly/gulp...


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...