autoprefixer

Parse CSS and add vendor prefixes to CSS rules using values from the Can I Use website

autoprefixer downloads autoprefixer version autoprefixer license

autoprefixerSimilar Packages:
Npm Package Weekly Downloads Trend
3 Years
🌟 Show real-time usage chart on autoprefixer's README.md, just copy the code below.
## Usage Trend
[![Usage Trend of autoprefixer](https://npm-compare.com/img/npm-trend/THREE_YEARS/autoprefixer.png)](https://npm-compare.com/autoprefixer#timeRange=THREE_YEARS)
Cumulative GitHub Star Trend
🌟 Show GitHub stars trend chart on autoprefixer's README.md, just copy the code below.
## GitHub Stars Trend
[![GitHub Stars Trend of autoprefixer](https://npm-compare.com/img/github-trend/autoprefixer.png)](https://npm-compare.com/autoprefixer)
Stat Detail
Package
Downloads
Stars
Size
Issues
Publish
License
autoprefixer19,911,08022,614199 kB4123 days agoMIT
README for autoprefixer

Autoprefixer Cult Of Martians

PostCSS plugin to parse CSS and add vendor prefixes to CSS rules using values from Can I Use. It is recommended by Google and used in Twitter and Alibaba.

Write your CSS rules without vendor prefixes (in fact, forget about them entirely):

::placeholder {
  color: gray;
}

.image {
  width: stretch;
}

Autoprefixer will use the data based on current browser popularity and property support to apply prefixes for you. You can try the interactive demo of Autoprefixer.

::-moz-placeholder {
  color: gray;
}
::placeholder {
  color: gray;
}

.image {
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
}

Twitter account for news and releases: @autoprefixer.

Sponsored by Evil Martians

Docs

Read full docs here.