fela-plugin-prefixer

v4.3.5
Fela plugin to add vendor prefixes
fela fela-plugin vendor prefixing prefixer autoprefixer cssinjs

fela-plugin-prefixer

npm version npm downloads Bundlephobia

Uses stylis to add vendor prefixes to both property and value.

Installation

yarn add fela-plugin-prefixer

You may alternatively use npm i --save fela-plugin-prefixer.

Usage

Make sure to read the documentation on how to use plugins.

import { createRenderer } from 'fela'
import prefixer from 'fela-plugin-prefixer'

const renderer = createRenderer({
  plugins: [prefixer()],
})

Example

Input

{
  display: 'flex',
  appearance: 'none'
}

Output

{
  display: 'webkit-box;display:-webkit-flex;display:flex',
  WebkitAppearance: 'none;-moz-appearance:none;appearance:none'
}

License

Fela is licensed under the MIT License.
Documentation is licensed under Creative Commons License.
Created with ♥ by @robinweser and all the great contributors.

Metadata

  • MIT
  • Whatever
  • Robin Frischmann
  • released 4/28/2017

Downloads

Maintainers