JSPM

tiny-css-prefixer

1.0.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2106
  • Score
    100M100P100Q131086F
  • License MIT

CSS prefixing helpers in less than 1KB

Package Exports

  • tiny-css-prefixer

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 (tiny-css-prefixer) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

tiny-css-prefixer

Bare essentials CSS prefixing helpers in less than 1KB 🌈

version gzip size

Currently supports prefixing properties for most browsers as it makes sense. See SUPPORT.md for more information on which prefixes and transformations have been omitted.

The API is fairly straightforward and only consists of two functions, prefixProperty and prefixValue.

prefixProperty('margin'); // ['margin']
prefixProperty('appearance'); // ['appearance', '-moz-appearance', '-webkit-appearance']

prefixValue('color', 'palevioletred'); // 'palevioletred'
prefixValue('position', 'sticky'); // '-webkit-sticky, sticky'