1

有没有办法像下面的示例那样自动生成 IE 特定文件?

   /* content.scss */
.box {
    color:red;
    .ie7 & {
        color:green;
    }
}

这会生成两个文件:

/* content.css */
.box {
  color: red;
}


/* ie7.css */
.ie7 .box {
  color: green;
}
4

1 回答 1

0

您必须设置 2 个不同的 Sass 文件,但您可以使用自定义 mixin:

http://jakearchibald.github.com/sass-ie/

$old-ie: false !default;

@mixin old-ie {
    // Only use this content if we're dealing with old IE
    @if $old-ie {
        @content;
    }
}

.test {

    float: left;
    width: 70%;

    @include old-ie {
        // These hacks won't appear in the normal stylesheet
        display: inline;
        zoom: 1;
        whatever-ie-needs: le-sigh;
    }
}
于 2012-10-18T14:04:57.993 回答