scss封装css3兼容性

@mixin transform ($x) {
transform: $x;
-ms-transform: $x;
-moz-transform: $x;
-webkit-transform: $x;
-o-transform: $x;
}
@include transform(translate(-50%,-50%))
原文地址:https://www.cnblogs.com/XIE7654/p/6958365.html