如何根据@media查询设置不同的Sass变量

时间:2018-08-13 14:22:15

标签: sass

问题@media媒体查询能否触发报道?

所需结果:根据不同的分辨率(媒体查询)为变量$remUnit分配不同的值

无礼:

$remUnit: null !default;
@media screen and (min-width: 1024px) { 
  $remUnit: 102 !global; 
}
@media screen and (min-width: 1920px) { 
  $remUnit: 192 !global;
} 
/* result: $remUnit => 192 */
/* output: at 1024 resolution and 1920 resolution, $remUnit output is always 192, why? */

0 个答案:

没有答案