Configurable automatic vender specific prefixes

5
Voted

Automatically add vendor specific prefixes for CSS3 properties.

  1. Should be configurable so that each individual CSS3 property type can be turned on/off.
  2. Entire feature should have an on/off that takes precedence over individual property settings.
  3. Vendor specific prefixes should be listed before their generic property declaration.

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