autoprefix
v1.0.1
Published
Adds vendor prefixes to an object of styles through autoprefixer
Downloads
6,771
Maintainers
Readme
autoprefix
Adds vendor prefixes to an object of styles through autoprefixer.
Works best in combination with react-autoprefix babel plugin to auto prefix your inline styles at compilation time :).
Installation
$ npm install autoprefix
Usage
require('autoprefix')({
alignItems: 'center',
background: 'linear-gradient(350.5deg, white, black), linear-gradient(-130deg, black, white), linear-gradient(45deg, black, white)'
});
// =>
//
// {
// webkitBoxAlign: 'center',
// webkitAlignItems: 'center',
// msFlexAlign: 'center',
// alignItems: 'center',
// background: ['-webkit-linear-gradient(99.5deg, white, black), -webkit-linear-gradient(220deg, black, white), -webkit-linear-gradient(45deg, black, white)', 'linear-gradient(350.5deg, white, black), linear-gradient(-130deg, black, white), linear-gradient(45deg, black, white)']
// }
Initially inspired by react-css.
Locked to a synchronous version of autoprefixer to allow for the babel plugin for react.