# autoprefixer **Repository Path**: mirrors_stevemao/autoprefixer ## Basic Information - **Project Name**: autoprefixer - **Description**: Parse CSS and add vendor prefixes to rules by Can I Use - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-26 - **Last Updated**: 2025-09-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Autoprefixer [![Build Status](https://travis-ci.org/postcss/autoprefixer.svg)](https://travis-ci.org/postcss/autoprefixer) [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 Taobao. Write your CSS rules without vendor prefixes (in fact, forget about them entirely): ```css :fullscreen a { display: flex } ``` Autoprefixer will use the data based on current browser popularity and property support to apply prefixes for you. You try in the [interactive demo] of Autoprefixer. ```css :-webkit-full-screen a { display: -webkit-box; display: -webkit-flex; display: flex } :-moz-full-screen a { display: flex } :-ms-fullscreen a { display: -ms-flexbox; display: flex } :fullscreen a { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex } ``` Twitter account for news and releases: [@autoprefixer]. Sponsored by Evil Martians [interactive demo]: http://simevidas.jsbin.com/gufoko/quiet [@autoprefixer]: https://twitter.com/autoprefixer [recommended]: https://developers.google.com/web/fundamentals/tools/build/setupbuildprocess#dont-trip-up-with-vendor-prefixes [Can I Use]: http://caniuse.com/ [PostCSS]: https://github.com/postcss/postcss ## Features ### Write Pure CSS Working with Autoprefixer is simple: just forget about vendor prefixes and write normal CSS according to the latest W3C specs. You don’t need a special language (like Sass) or remember where you must use mixins. Autoprefixer supports selectors (like `:fullscreen` and `::selection`), unit function (`calc()`), at‑rules (`@support` and `@keyframes`) and properties. Because Autoprefixer is a postprocessor for CSS, you can also use it with preprocessors such as Sass, Stylus or LESS. ### Flexbox, Filters, etc. Just write normal CSS according to the latest W3C specs and Autoprefixer will produce the code for old browsers. ```css a { display: flex; } ``` compiles to: ```css a { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex } ``` Autoprefixer has [27 special hacks] to fix web browser differences. [27 special hacks]: https://github.com/postcss/autoprefixer-core/tree/master/lib/hacks ### Only Actual Prefixes Autoprefixer utilizes the most recent data from [Can I Use] to add only necessary vendor prefixes. It also removes old, unnecessary prefixes from your CSS (like `border-radius` prefixes, produced by many CSS libraries). ```css a { -webkit-border-radius: 5px; border-radius: 5px; } ``` compiles to: ```css a { border-radius: 5px; } ``` [Can I Use]: http://caniuse.com/ ## Browsers Autoprefixer uses [Browserslist], so you can specify the browsers you want to target in your project by queries like `last 2 versions` or `> 5%`. If you don’t provide browsers option, Browserslist will try to find `browserslist` config in parent dirs. See [Browserslist docs] for queries, browser names, config format and default value. [Browserslist]: https://github.com/ai/browserslist [Browserslist docs]: https://github.com/ai/browserslist#queries ## Source Map Autoprefixer can modify previous source maps (for example, from Sass): it will autodetect a previous map if it is listed in an annotation comment. Autoprefixer supports inline source maps too. If an input CSS contains annotation from the previous step with a map in data:uri, Autoprefixer will update the source map with prefix changes and inline the new map back into the output CSS. ## Visual Cascade Autoprefixer changes CSS indentation to create a nice visual cascade of prefixes if the CSS is uncompressed: ```css a { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } ``` You can disable cascade by using the `cascade: false` option. ## Disabling Autoprefixer was designed to have no interface – it just works. If you need some browser specific hack just write a prefixed property after the unprefixed one. ```css a { transform: scale(0.5); -moz-transform: scale(0.6); } ``` If some prefixes were generated in a wrong way, please create an issue on GitHub. But if you do not need Autoprefixer in some part of your CSS, you can use control comments to disable Autoprefixer. ```css a { transition: 1s; /* it will be prefixed */ } b { /* autoprefixer: off */ transition: 1s; /* it will not be prefixed */ } ``` Control comments disable Autoprefixer within the whole rule in which you place it. In the above example, Autoprefixer will be disabled in the entire `b` rule scope, not only after the comment. You can also use comments recursively: ```css /* autoprefixer: off */ @support (transition: all) { /* autoprefixer: on */ a { /* autoprefixer: off */ } } ``` By default, Autoprefixer also removes outdated prefixes. You can disable this behavior by `remove: false` option. If you have no legacy code, this options will make Autoprefixer about 10% faster. ## FAQ #### Does it add polyfills? No. Autoprefixer only adds prefixes. Most new CSS features will require client side JavaScript to handle correctly a new behavior. Depending on what you consider being a “polyfill”, you can take a look to some other tools and libraries. If you just look for syntax sugar, you might take a look to: - [CSS Grace], a PostCSS plugin that handles some IE hacks (opacity, rgba, inline-block, etc) in addition to some non-standard handy shortcuts. - [cssnext], a tool that allows you to write standard CSS syntax non-implemented yet in browsers (custom properties, custom media, color functions, etc). It includes autoprefixer and can be used as a PostCSS plugin too. [CSS Grace]: https://github.com/cssdream/cssgrace [cssnext]: https://cssnext.github.io/ #### Why don’t gradients work in Firefox? Make sure that you use correct the [direction syntax]. For example, you should use `to bottom` instead of `top`: ```css a { background: linear-gradient(to bottom, white, black) } ``` Unfortunately, unprefixed gradients use a different direction syntax and most examples you find use an old gradient syntax, so be careful and use always the latest W3C specs with Autoprefixer. [direction syntax]: https://developer.mozilla.org/en-US/docs/Web/CSS/linear-gradient #### Why doesn’t Autoprefixer add prefixes to `border-radius`? Developers are often surprised by how few prefixes are required today. If Autoprefixer doesn’t add prefixes to your CSS, check if they’re still required on [Can I Use]. There is [list with all supported] properties, values and selectors in wiki. [Can I Use]: http://caniuse.com/ [list with all supported]: https://github.com/postcss/autoprefixer/wiki/support-list #### Why doesn’t Autoprefixer support `display: box`, `box-align`, etc? There were 3 specification versions for Flexbox. For example, 2009 draft suggested to write `display: box`, 2012 draft `display: flexbox`, but final versions `display: flex`. Autoprefixer add prefixes only for properties from [final version] of Flexbox spec. So, for example, you need to write `display: flex` instead of `display: box`. [final version]: http://www.w3.org/TR/css-flexbox-1/ #### Why doesn’t Autoprefixer support `appearance`? Unlike `transition`, the `appearance` property is not a part of any specification. So there will not be any `appearance` support in near future. Sometime in the future when all browsers work without prefixes you can remove Autoprefixer and your CSS just works. #### Does Autoprefixer add `-epub-` prefix? No, Autoprefixer works only with browsers prefixes from Can I Use. But you can use [postcss-epub](https://github.com/Rycochet/postcss-epub) for prefixing ePub3 properties. #### Why Autoprefixer uses unprefixed properties in `@-webkit-keyframes`? Browser teams can remove some prefix before other. So we try to use all combinations of prefixed/unprefixed values. ## Usage ### Grunt You can use the [grunt-postcss] plugin for Grunt with `autoprefixer-core` and [other PostCSS plugins]. Install the npm package and add it to `Gruntfile`: ```js var autoprefixer = require('autoprefixer-core'); grunt.initConfig({ postcss: { options: { processors: [ autoprefixer({ browsers: ['last 2 version'] }).postcss ] }, dist: { src: 'css/*.css' } }, }); grunt.loadNpmTasks('grunt-postcss'); ``` [other PostCSS plugins]: https://github.com/postcss/postcss#built-with-postcss [grunt-postcss]: https://github.com/nDmitry/grunt-postcss ### Gulp In Gulp you can use [gulp-postcss] with `autoprefixer-core` npm package. ```js gulp.task('autoprefixer', function () { var postcss = require('gulp-postcss'); var sourcemaps = require('gulp-sourcemaps'); var autoprefixer = require('autoprefixer-core'); return gulp.src('./src/*.css') .pipe(sourcemaps.init()) .pipe(postcss([ autoprefixer({ browsers: ['last 2 version'] }) ])) .pipe(sourcemaps.write('.')) .pipe(gulp.dest('./dest')); }); ``` With `gulp-postcss` you also can combine Autoprefixer with [other PostCSS plugins]. [other PostCSS plugins]: https://github.com/postcss/postcss#plugins [gulp-postcss]: https://github.com/postcss/gulp-postcss ### Webpack In [webpack] you can use [postcss-loader] with `autoprefixer-core` and [other PostCSS plugins]. ```js var autoprefixer = require('autoprefixer-core'); module.exports = { module: { loaders: [ { test: /\.css$/, loader: "style-loader!css-loader!postcss-loader" } ] }, postcss: [ autoprefixer({ browsers: ['last 2 version'] }) ] } ``` [other PostCSS plugins]: https://github.com/postcss/postcss#built-with-postcss [postcss-loader]: https://github.com/postcss/postcss-loader [webpack]: http://webpack.github.io/ ### Other Build Tools: * **Ruby on Rails**: [autoprefixer-rails] * **Brunch**: [autoprefixer-brunch] * **Broccoli**: [broccoli-autoprefixer] * **Middleman**: [middleman-autoprefixer] * **Mincer**: add `autoprefixer` npm package and enable it: `environment.enable('autoprefixer')` * **Jekyll**: add `autoprefixer-rails` and `jekyll-assets` to `Gemfile` [middleman-autoprefixer]: https://github.com/porada/middleman-autoprefixer [broccoli-autoprefixer]: https://github.com/sindresorhus/broccoli-autoprefixer [autoprefixer-loader]: https://github.com/passy/autoprefixer-loader [autoprefixer-brunch]: https://github.com/lydell/autoprefixer-brunch [autoprefixer-rails]: https://github.com/ai/autoprefixer-rails ### Compass You should consider using Gulp instead of Compass binary, because it has better Autoprefixer integration and many other awesome plugins. But if you can’t move from Compass binary right now, there’s a hack to run Autoprefixer after `compass compile`. Install `autoprefixer-rails` gem: ``` gem install autoprefixer-rails ``` and add post-compile hook to `config.rb`: ```ruby require 'autoprefixer-rails' on_stylesheet_saved do |file| css = File.read(file) map = file + '.map' if File.exists? map result = AutoprefixerRails.process(css, from: file, to: file, map: { prev: File.read(map), inline: false }) File.open(file, 'w') { |io| io << result.css } File.open(map, 'w') { |io| io << result.map } else File.open(file, 'w') { |io| io << AutoprefixerRails.process(css) } end end ``` ### Less You can use autoprefixer with less by including the [less-plugin-autoprefix] plugin. [less-plugin-autoprefix]: https://github.com/less/less-plugin-autoprefix ### Stylus If you use Stylus CLI, you can add Autoprefixer by [autoprefixer-stylus] plugin: ``` stylus -u autoprefixer-stylus -w file.styl ``` [autoprefixer-stylus]: https://github.com/jenius/autoprefixer-stylus ### CodeKit CodeKit, since the 2.0 version, contains Autoprefixer. In the After Compiling section, there is a checkbox to enable Autoprefixer. Read [CodeKit docs] for more information. [CodeKit docs]: https://incident57.com/codekit/help.html#autoprefixer ### Prepros If you need free assets build GUI tool, try [Prepros]. Just set “Auto Prefix CSS” checkbox in right panel. [Prepros]: http://alphapixels.com/prepros/ ### CLI You can use the `autoprefixer` binary to process CSS files using any assets manager: ```sh sudo npm install --global autoprefixer autoprefixer *.css ``` See `autoprefixer -h` for help. ### JavaScript You can use [autoprefixer-core] in your node.js application or if you want to develop an Autoprefixer plugin for new environment. ```js var autoprefixer = require('autoprefixer-core'); var prefixed = autoprefixer.process('a { transition: transform 1s }').css; ``` Autoprefixer can be also used as a [PostCSS] processor, so you can combine it with [other processors] and parse CSS only once: ```js postcss(). use( autoprefixer({ browsers: ['> 1%', 'IE 9'] }) ). use( compressor ). process(css); ``` There is also [standalone build] for the browser or as a non-Node.js runtime. You can use [html-autoprefixer] to process HTML with inlined CSS. [autoprefixer-core]: https://github.com/postcss/autoprefixer-core [html-autoprefixer]: https://github.com/RebelMail/html-autoprefixer [other processors]: https://github.com/postcss/postcss#built-with-postcss [standalone build]: https://raw.github.com/ai/autoprefixer-rails/master/vendor/autoprefixer.js [PostCSS]: https://github.com/postcss/postcss ### PHP You can use Autoprefixer in PHP by [autoprefixer-php] library: ```php $autoprefixer = new Autoprefixer(); $prefixed = $autoprefixer->compile('a { transition: transform 1s }'); ``` [autoprefixer-php]: https://github.com/vladkens/autoprefixer-php ### .NET For .NET you can use [Autoprefixer for .NET] library. For ASP.NET you can use the official [BundleTransformer.Autoprefixer] plugin for [Bundle Transformer]. 1. Install package via NuGet: ``` PM> Install-Package BundleTransformer.Autoprefixer ``` 2. Perform a post-install actions specified in the `readme.txt` file. 3. Register a bundles in the `App_Start/BundleConfig.cs` file and configure the Bundle Transformer (see the [documentation]). [BundleTransformer.Autoprefixer]: http://www.nuget.org/packages/BundleTransformer.Autoprefixer/ [Autoprefixer for .NET]: https://github.com/digitalcreations/autoprefixer [Bundle Transformer]: http://bundletransformer.codeplex.com/ [documentation]: http://bundletransformer.codeplex.com/documentation ### Text Editors Autoprefixer should be used in assets build tools. Text editor plugins are not a good solution, because prefixes decrease code readability and you will need to change value in all prefixed properties. I recommend you to learn how to use build tools like [Grunt] or [Gulp]. They work much better and will open you a whole new world of useful plugins and automatization. But, if you can’t move to a build tool, you can use text editor plugins: * [Sublime Text](https://github.com/sindresorhus/sublime-autoprefixer) * [Brackets](https://github.com/mikaeljorhult/brackets-autoprefixer) * [Atom Editor](https://github.com/sindresorhus/atom-autoprefixer) [Grunt]: http://gruntjs.com/ [Gulp]: http://gulpjs.com/ #### Visual Studio You can apply the Autoprefixer optimizations to your LESS/Sass stylesheets in Visual Studio 2013 by using the [Web Essentials 2013] plugin (since the 2.2 version). To add this functionality in the Visual Studio 2013 (Update 2 or later) you need to do the following steps: 1. Download and install the [Web Essentials 2013 for Update 2]. 2. Choose a `Tools` → `Options` → `Web Essentials` → `CSS` menu item 3. In the `Enable Autoprefixer` box specify a value equal to `True` Autoprefixer options in the Web Essentials 2013 [Web Essentials 2013 for Update 2]: http://visualstudiogallery.msdn.microsoft.com/56633663-6799-41d7-9df7-0f2a504ca361 [Web Essentials 2013]: http://vswebessentials.com/