Package Exports
- autoprefix
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (autoprefix) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
autoprefixer
Adds vendor prefixes to an object of styles through autoprefixer.
Works best in combination with react-autoprefixer babel plugin to auto prefix your inline styles at compilation time :).
Installation
$ npm install autoprefixer
Usage
require('autoprefixer')({
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.