如何在SCSS / COMPASS中编写浏览器标志?

时间:2012-02-26 15:10:58

标签: css browser compass-sass flags sass

也许我完全不理解某些东西,但我不明白如何用SCASS在SCSS中编写浏览器标志。我知道Compass处理了很多css3的东西,但我需要编写很多webkit或ms代码,例如在纯CSS中:

-webkit-tap-highlight-color: rgba(0,0,0,0);
-ms-interpolation-mode: bicubic;
::-moz-selection { }

我该如何写这些?

1 个答案:

答案 0 :(得分:0)

好吧,如果他们不需要重复,只需写下来。

或创建自己的mixins:

@mixin highlight($color: rgba(0,0,0,0)) {
     -webkit-tap-highlight-color: $color
}