Sass中的媒体查询

时间:2016-04-30 17:19:58

标签: sass media responsive

我想知道是否有办法在sass中编写媒体查询,所以我可以给出一定的风格,例如:300px到900px

在css中看起来像这样

@media only screen and (min-width: 300px) and (max-width: 900px){

}

我知道我可以写

@media (max-width: 900px)

但是如何制作这个范围?

5 个答案:

答案 0 :(得分:2)

这是我用于具有sass的Mixin的内容,它允许我快速引用我想要的断点。显然你可以调整媒体查询列表以适应你的项目移动拳头等。

但是我会相信你要求的多个查询。

$size__site_content_width: 1024px;

/* Media Queries */ Not necessarily correct, edit these at will 
$media_queries : (
    'mobile'    : "only screen and (max-width: 667px)",
    'tablet'    : "only screen and (min-width: 668px) and (max-width: $size__site_content_width)",
    'desktop'   : "only screen and (min-width: ($size__site_content_width + 1))",
    'retina2'   : "only screen and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi)",
    'retina3'   : "only screen and (-webkit-min-device-pixel-ratio: 3) and (min-resolution: 288dpi)",
    'landscape' : "screen and (orientation:landscape) ",    
    'portrait'  : "screen and (orientation:portrait) "
);

@mixin for_breakpoint($breakpoints) {
    $conditions : ();
    @each $breakpoint in $breakpoints {
        // If the key exists in the map
        $conditions: append(
            $conditions,
            #{inspect(map-get($media_queries, $breakpoint))},
            comma
        );
    }

    @media #{$conditions} {
        @content;
    }

}

在你的scss中使用它:

#masthead {
    background: white;
    border-bottom:1px solid #eee;
    height: 90px;
    padding: 0 20px;
    @include for_breakpoint(mobile desktop) {
        height:70px;
        position:fixed;
        width:100%;
        top:0;
    }
}

然后这将编译为:

#masthead { 
  background: white;
  border-bottom: 1px solid #eee;
  height: 90px;
  padding: 0 20px;
}

@media only screen and (max-width: 667px), only screen and (min-width: 1025px) {
  #masthead {
    height: 70px;
    position: fixed;
    width: 100%;
    top: 0;
  }
}

答案 1 :(得分:2)

$small: 300px;
$medium: 900px;

@media screen and (min-width: $small) and (max-width: $medium) {
  //css code
}

答案 2 :(得分:1)

$small: 300px;
$medium: 900px;

.smth {
  //some CSS
  @media screen and (max-width: $small) {
    //do Smth
  }
  @media screen and (min-width: $medium) {
      //do Smth
  }
}

这样的东西?

答案 3 :(得分:0)

@media (max-width: 300px) and (min-width: 900px){..}

答案 4 :(得分:0)

检查此内容以获取scss。 https://github.com/Necromancerx/media-queries-scss-mixins

用法

    .container {
      @include xs {
        background: blue;
      }

      @include gt-md {
        color: green
      }
    }

演示Stackblitz

基于Angular FlexLayout MediaQueries

相关问题