Stylus用关键字替换长@media线

时间:2017-03-05 12:58:55

标签: media-queries stylus

在Stylus中是否可以定义要使用的关键字/变量而不是长@media线规则?

例如:

IE = @media all and (-webkit-min-device-pixel-ratio:0) and (min-resolution: .001dpcm)

然后将其用作

.div1
    IE
        color red

1 个答案:

答案 0 :(得分:1)

是的,就像这样:

IE = 'all and (-webkit-min-device-pixel-ratio:0) and (min-resolution: .001dpcm)'

.div1
  @media IE
    color red