scss Sass媒体查询

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了scss Sass媒体查询相关的知识,希望对你有一定的参考价值。

@mixin for-phone-only {
  @media (max-width: 599px) {
    @content;
  }
}

@mixin for-up-to-desktop {
  @media (max-width: 1200px) {
    @content;
  }
}


@mixin for-tablet-portrait-up {
  @media (min-width: 600px) {
    @content;
  }
}

@mixin for-tablet-portait-only {
  @media (min-width: 600px) and (max-width: 899px) {
    @content;
  }
}

@mixin for-tablet-landscape-up {
  @media (min-width: 900px) {
    @content;
  }
}

@mixin for-tablet-landscape-only {
  @media (min-width: 900px) and (max-width: 1199px) {
    @content;
  }
}

@mixin for-desktop-up {
  @media (min-width: 1200px) {
    @content;
  }
}

@mixin for-desktop-only {
  @media (min-width: 1200px) and (max-width: 1799px) {
    @content;
  }
}

@mixin for-big-desktop-up {
  @media (min-width: 1800px) {
    @content;
  }
}

以上是关于scss Sass媒体查询的主要内容,如果未能解决你的问题,请参考以下文章

scss SASS媒体查询

scss 用于媒体查询的Sass mixins

scss Bootstrap Sass媒体查询变量

scss Sass媒体查询

scss Bootstrap Sass媒体查询变量

scss Bootstrap Sass媒体查询变量