Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 415 Bytes

prefixer.md

File metadata and controls

28 lines (19 loc) · 415 Bytes

prefixer Addon

Uses inline-style-prefixer library to auto-prefix your styles on the server and browser.

Example:

nano.put('.foo', {
    flex: 1
});

Result:

.foo {
    -webkit-flex: 1;
    flex: 1;
}

Installation

Simply install prefixer addon.

Read more about the Addon Installation.