Automatically add vendor specific prefixes for CSS3 properties.
E.g. default.sass
.myClass {
border-radius: 5px;
}
becomes the following in the generated file:
.myClass {
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
}
Status: New
|