Autoprefixer

Parse CSS and add vendor prefixes to rules by Can I Use

README

Autoprefixer [![Cult Of Martians][cult-img]][cult]


<img align="right" width="94" height="71"
     src="http://postcss.github.io/autoprefixer/logo.svg"
     title="Autoprefixer logo by Anton Lovchikov">

[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):

  1. ```css
  2. :
  3.   color: gray;
  4. }

  5. .image {
  6.   background-image: url(image@1x.png);
  7. }
  8. @media (min-resolution:
  9.   .image {
  10.     background-image: url(image@2x.png);
  11.   }
  12. }
  13. ```

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.

  1. ```css
  2. :
  3.   color: gray;
  4. }
  5. :
  6.   color: gray;
  7. }

  8. .image {
  9.   background-image: url(image@1x.png);
  10. }
  11. @media (-webkit-min-device-pixel-ratio: 2),
  12.        (min-resolution:
  13.   .image {
  14.     background-image: url(image@2x.png);
  15.   }
  16. }
  17. ```

Twitter account for news and releases: [@autoprefixer].

Sponsored by Evil Martians

[interactive demo]: https://autoprefixer.github.io/
[@autoprefixer]:    https://twitter.com/autoprefixer
[Can I Use]:        https://caniuse.com/
[cult-img]:         http://cultofmartians.com/assets/badges/badge.svg
[PostCSS]:          https://github.com/postcss/postcss
[cult]:             http://cultofmartians.com/tasks/autoprefixer-grid.html


Contents


  [Why doesn’t Autoprefixer add prefixes to border-radius?](#why-doesnt-autoprefixer-add-prefixes-to-border-radius)
  [Why does Autoprefixer use unprefixed properties in @-webkit-keyframes?](#why-does-autoprefixer-use-unprefixed-properties-in--webkit-keyframes)
  [How to work with legacy -webkit- only code?](#how-to-work-with-legacy--webkit--only-code)
  [Does Autoprefixer add -epub- prefix?](#does-autoprefixer-add--epub--prefix)
  [Why doesn’t Autoprefixer transform generic font-family system-ui?](#why-doesnt-autoprefixer-transform-generic-font-family-system-ui)
  Gulp
  CLI
    GUI Tools
    [Do not create ::before and ::after pseudo elements](#do-not-create-before-and-after-pseudo-elements)
    [When changing the grid gap value, columns and rows must be re-declared](#when-changing-the-grid-gap-value-columns-and-rows-must-be-re-declared)

Browsers


Autoprefixer uses [Browserslist], so you can specify the browsers
you want to target in your project with queries like > 5%
(see [Best Practices]).

The best way to provide browsers is a .browserslistrc file in your project
root, or by adding a browserslist key to your package.json.

We recommend the use of these options over passing options to Autoprefixer so
that the config can be shared with other tools such as [babel-preset-env] and
[Stylelint].

See [Browserslist docs] for queries, browser names, config format, and defaults.

[Browserslist docs]: https://github.com/browserslist/browserslist#queries
[babel-preset-env]:  https://github.com/babel/babel/tree/master/packages/babel-preset-env
[Best Practices]:    https://github.com/browserslist/browserslist#best-practices
[Browserslist]:      https://github.com/browserslist/browserslist
[Stylelint]:         https://stylelint.io/


FAQ


Does Autoprefixer polyfill Grid Layout for IE?


Autoprefixer can be used to translate modern CSS Grid syntax into IE 10
and IE 11 syntax, but this polyfill will not work in 100% of cases.
This is why it is disabled by default.

First, you need to enable Grid prefixes by using either the grid: "autoplace"
option or the `/ autoprefixer grid: autoplace /` control comment.
Also you can use environment variable to enable Grid:
AUTOPREFIXER_GRID=autoplace npm build.

Second, you need to test every fix with Grid in IE. It is not an enable and
forget feature, but it is still very useful.
Financial Times and Yandex use it in production.

Third, there is only very limited auto placement support. Read the
for more details.

Fourth, if you are not using the autoplacement feature, the best way
to use Autoprefixer is by using  grid-template or grid-template-areas.

  1. ```css
  2. .page {
  3.   display: grid;
  4.   grid-gap: 33px;
  5.   grid-template:
  6.     "head head head" 1fr
  7.     "nav main main" minmax(100px, 1fr)
  8.     "nav foot foot" 2fr /
  9.     1fr   100px 1fr;
  10. }
  11. .page__head {
  12.   grid-area: head;
  13. }
  14. .page__nav {
  15.   grid-area: nav;
  16. }
  17. .page__main {
  18.   grid-area: main;
  19. }
  20. .page__footer {
  21.   grid-area: foot;
  22. }
  23. ```

See also:

[The guide about Grids in IE and Autoprefixer].
[postcss-gap-properties] to use new gap property
  instead of old grid-gap.
[postcss-grid-kiss] has alternate “everything in one property” syntax,
  which makes using Autoprefixer’s Grid translations safer.

[The guide about Grids in IE and Autoprefixer]: https://css-tricks.com/css-grid-in-ie-css-grid-and-the-new-autoprefixer/
[postcss-gap-properties]:                     https://github.com/jonathantneal/postcss-gap-properties
[postcss-grid-kiss]:                          https://github.com/sylvainpolletvillard/postcss-grid-kiss


Does it add polyfills?


No. Autoprefixer only adds prefixes.

Most new CSS features will require client side JavaScript to handle a new
behavior correctly.

Depending on what you consider to be a “polyfill”, you can take a look at some
other tools and libraries. If you are just looking for syntax sugar,
you might take a look at:

- [postcss-preset-env] is a plugins preset with polyfills and Autoprefixer
  to write future CSS today.
- [Oldie], a PostCSS plugin that handles some IE hacks (opacity, rgba, etc).
- [postcss-flexbugs-fixes], a PostCSS plugin to fix flexbox issues.

[postcss-flexbugs-fixes]: https://github.com/luisrudge/postcss-flexbugs-fixes
[postcss-preset-env]:     https://github.com/jonathantneal/postcss-preset-env
[Oldie]:                  https://github.com/jonathantneal/oldie


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].

[Can I Use]: https://caniuse.com/


Why does Autoprefixer use unprefixed properties in @-webkit-keyframes?


Browser teams can remove some prefixes before others, so we try to use all
combinations of prefixed/unprefixed values.


How to work with legacy -webkit- only code?


Autoprefixer needs unprefixed property to add prefixes. So if you only
wrote -webkit-gradient without W3C’s gradient,
Autoprefixer will not add other prefixes.

But [PostCSS] has plugins to convert CSS to unprefixed state.
Use [postcss-unprefix] before Autoprefixer.

[postcss-unprefix]: https://github.com/gucong3000/postcss-unprefix


Does Autoprefixer add -epub- prefix?


No, Autoprefixer works only with browsers prefixes from Can I Use.
But you can use [postcss-epub] for prefixing ePub3 properties.

[postcss-epub]: https://github.com/Rycochet/postcss-epub


Why doesn’t Autoprefixer transform generic font-family system-ui?


system-ui is technically not a prefix and the transformation is not
future-proof. You can use [postcss-font-family-system-ui] to transform
system-ui to a practical font-family list.

[postcss-font-family-system-ui]: https://github.com/JLHwung/postcss-font-family-system-ui


Usage


Gulp


In Gulp you can use [gulp-postcss] with autoprefixer npm package.

  1. ``` js
  2. gulp.task('autoprefixer', () => {
  3.   const autoprefixer = require('autoprefixer')
  4.   const sourcemaps = require('gulp-sourcemaps')
  5.   const postcss = require('gulp-postcss')

  6.   return gulp.src('./src/*.css')
  7.     .pipe(sourcemaps.init())
  8.     .pipe(postcss([ autoprefixer() ]))
  9.     .pipe(sourcemaps.write('.'))
  10.     .pipe(gulp.dest('./dest'))
  11. })
  12. ```

With gulp-postcss you also can combine Autoprefixer
with [other PostCSS plugins].

[gulp-postcss]:          https://github.com/postcss/gulp-postcss
[other PostCSS plugins]: https://github.com/postcss/postcss#plugins


Webpack


In [webpack] you can use [postcss-loader] with autoprefixer
and [other PostCSS plugins].

  1. ``` js
  2. module.exports = {
  3.   module: {
  4.     rules: [
  5.       {
  6.         test: /\.css$/,
  7.         use: ["style-loader", "css-loader", "postcss-loader"]
  8.       }
  9.     ]
  10.   }
  11. }
  12. ```

And create a postcss.config.js with:

  1. ``` js
  2. module.exports = {
  3.   plugins: [
  4.     require('autoprefixer')
  5.   ]
  6. }
  7. ```

[other PostCSS plugins]: https://github.com/postcss/postcss#plugins
[postcss-loader]:        https://github.com/postcss/postcss-loader
[webpack]:               https://webpack.js.org/


CSS-in-JS


The best way to use PostCSS with CSS-in-JS is [astroturf].
Add its loader to your webpack.config.js:

  1. ``` js
  2. module.exports = {
  3.   module: {
  4.     rules: [
  5.       {
  6.         test: /\.css$/,
  7.         use: ['style-loader', 'postcss-loader'],
  8.       },
  9.       {
  10.         test: /\.jsx?$/,
  11.         use: ['babel-loader', 'astroturf/loader'],
  12.       }
  13.     ]
  14.   }
  15. }
  16. ```

Then create postcss.config.js:

  1. ``` js
  2. module.exports = {
  3.   plugins: [
  4.     require('autoprefixer')
  5.   ]
  6. }
  7. ```

[astroturf]: https://github.com/4Catalyzer/astroturf


CLI


You can use the [postcss-cli] to run Autoprefixer from CLI:

  1. ```sh
  2. npm install postcss postcss-cli autoprefixer
  3. npx postcss *.css --use autoprefixer -d build/
  4. ```

See postcss -h for help.

[postcss-cli]: https://github.com/postcss/postcss-cli


Other Build Tools


Grunt: [grunt-postcss]
Ruby on Rails: [autoprefixer-rails]
Neutrino: [neutrino-middleware-postcss]
Jekyll: add autoprefixer-rails and jekyll-assets to Gemfile
Brunch: [postcss-brunch]
Broccoli: [broccoli-postcss]
Middleman: [middleman-autoprefixer]
Mincer: add autoprefixer npm package and enable it:
  environment.enable('autoprefixer')

[neutrino-middleware-postcss]: https://www.npmjs.com/package/neutrino-middleware-postcss
[middleman-autoprefixer]:      https://github.com/middleman/middleman-autoprefixer
[autoprefixer-rails]:          https://github.com/ai/autoprefixer-rails
[broccoli-postcss]:            https://github.com/jeffjewiss/broccoli-postcss
[postcss-brunch]:              https://github.com/iamvdo/postcss-brunch
[grunt-postcss]:               https://github.com/C-Lodder/grunt-postcss


Preprocessors


Less: [less-plugin-autoprefix]
Stylus: [autoprefixer-stylus]
Compass: [autoprefixer-rails#compass]

[less-plugin-autoprefix]: https://github.com/less/less-plugin-autoprefix
[autoprefixer-stylus]:    https://github.com/jenius/autoprefixer-stylus
[autoprefixer-rails#compass]:     https://github.com/ai/autoprefixer-rails#compass


GUI Tools




JavaScript


You can use Autoprefixer with [PostCSS] in your Node.js application
or if you want to develop an Autoprefixer plugin for a new environment.

  1. ``` js
  2. const autoprefixer = require('autoprefixer')
  3. const postcss = require('postcss')

  4. postcss([ autoprefixer ]).process(css).then(result => {
  5.   result.warnings().forEach(warn => {
  6.     console.warn(warn.toString())
  7.   })
  8.   console.log(result.css)
  9. })
  10. ```

There is also a [standalone build] for the browser or for a non-Node.js runtime.

You can use [html-autoprefixer] to process HTML with inlined CSS.

[html-autoprefixer]: https://github.com/RebelMail/html-autoprefixer
[standalone build]:  https://raw.github.com/ai/autoprefixer-rails/master/vendor/autoprefixer.js
[PostCSS]:           https://github.com/postcss/postcss


Text Editors and IDE


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 values in all prefixed properties.

I recommend you to learn how to use build tools like [Parcel].
They work much better and will open you a whole new world of useful plugins
and automation.

If you can’t move to a build tool, you can use text editor plugins:


[Parcel]: https://parceljs.org/


Warnings


Autoprefixer uses the [PostCSS warning API] to warn about really important
problems in your CSS:

Old direction syntax in gradients.
Old unprefixed display: box instead of display: flex
  by latest specification version.

You can get warnings from result.warnings():

  1. ``` js
  2. result.warnings().forEach(warn => {
  3.   console.warn(warn.toString())
  4. })
  5. ```

Every Autoprefixer runner should display these warnings.

[PostCSS warning API]: http://api.postcss.org/Warning.html


Disabling


Prefixes


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.

  1. ```css
  2. a {
  3.   transform: scale(0.5);
  4.   -moz-transform: scale(0.6);
  5. }
  6. ```

If some prefixes were generated incorrectly, please create an [issue on GitHub].

[issue on GitHub]: https://github.com/postcss/autoprefixer/issues


Features


You can use these plugin options to control some of Autoprefixer’s features.

grid: "autoplace" will enable -ms- prefixes for Grid Layout including some
supports: false will disable @supports parameters prefixing.
flexbox: false will disable flexbox properties prefixing.
  Or flexbox: "no-2009" will add prefixes only for final and IE
  versions of specification.
remove: false will disable cleaning outdated prefixes.

You should set them inside the plugin like so:

  1. ``` js
  2. autoprefixer({ grid: 'autoplace' })
  3. ```


Control Comments


If you do not need Autoprefixer in some part of your CSS,
you can use control comments to disable Autoprefixer.

  1. ```css
  2. .a {
  3.   transition: 1s; /* will be prefixed */
  4. }

  5. .b {
  6.   /* autoprefixer: off */
  7.   transition: 1s; /* will not be prefixed */
  8. }

  9. .c {
  10.   /* autoprefixer: ignore next */
  11.   transition: 1s; /* will not be prefixed */
  12.   mask: url(image.png); /* will be prefixed */
  13. }
  14. ```

There are three types of control comments:

`/ autoprefixer: (on|off) /`: enable/disable all Autoprefixer translations for the
  whole block both before and after the comment.
`/ autoprefixer: ignore next /`: disable Autoprefixer only for the next property
  or next rule selector or at-rule parameters (but not rule/at‑rule body).
`/ autoprefixer grid: (autoplace|no-autoplace|off) /`: control how Autoprefixer handles
  grid translations for the whole block:
  autoplace: enable grid translations with autoplacement support.
  no-autoplace: enable grid translations with autoplacement
    support disabled (alias for deprecated value on).
  off: disable all grid translations.

You can also use comments recursively:

  1. ```css
  2. /* autoprefixer: off */
  3. @supports (transition:
  4.   /* autoprefixer: on */
  5.   a {
  6.     /* autoprefixer: off */
  7.   }
  8. }
  9. ```

Note that comments that disable the whole block should not be featured in the same
block twice:

  1. ```css
  2. /* How not to use block level control comments */

  3. .do-not-do-this {
  4.   /* autoprefixer: off */
  5.   transition: 1s;
  6.   /* autoprefixer: on */
  7.   transform: rotate(20deg);
  8. }
  9. ```


Options


Function autoprefixer(options) returns a new PostCSS plugin.
See [PostCSS API] for plugin usage documentation.

  1. ``` js
  2. autoprefixer({ cascade: false })
  3. ```

Available options are:

env (string): environment for Browserslist.
cascade (boolean): should Autoprefixer use Visual Cascade,
  if CSS is uncompressed. Default: true
add (boolean): should Autoprefixer add prefixes. Default is true.
remove (boolean): should Autoprefixer [remove outdated] prefixes.
  Default is true.
supports (boolean): should Autoprefixer add prefixes for @supports
  parameters. Default is true.
flexbox (boolean|string): should Autoprefixer add prefixes for flexbox
  properties. With "no-2009" value Autoprefixer will add prefixes only
  for final and IE 10 versions of specification. Default is true.
grid (false|"autoplace"|"no-autoplace"): should Autoprefixer
  add IE 10-11 prefixes for Grid Layout properties?
    false (default): prevent Autoprefixer from outputting
       CSS Grid translations.
    "autoplace": enable Autoprefixer grid translations
      and include autoplacement support. You can also use
      `/ autoprefixer grid: autoplace /` in your CSS.
    "no-autoplace": enable Autoprefixer grid translations
      but exclude autoplacement support. You can also use
      `/ autoprefixer grid: no-autoplace /` in your CSS.
      (alias for the deprecated true value)
stats (object): custom [usage statistics] for > 10% in my stats
  browsers query.
overrideBrowserslist (array): list of queries for target browsers.
  Try to not use it. The best practice is to use .browserslistrc config
  or browserslist key in package.json to share target browsers
  with Babel, ESLint and Stylelint. See [Browserslist docs]
  for available queries and default value.
ignoreUnknownVersions (boolean): do not raise error on unknown browser
  version in Browserslist config. Default is false.

Plugin object has info() method for debugging purpose.

You can use PostCSS processor to process several CSS files
to increase performance.

[usage statistics]: https://github.com/browserslist/browserslist#custom-usage-data
[PostCSS API]:      http://api.postcss.org

Environment Variables


AUTOPREFIXER_GRID: (autoplace|no-autoplace) should Autoprefixer
  add IE 10-11 prefixes for Grid Layout properties?
    autoplace: enable Autoprefixer grid translations
      and include autoplacement support.
    no-autoplace: enable Autoprefixer grid translations
      but exclude autoplacement support.

Environment variables are useful, when you want to change Autoprefixer options but don't have access to config files.
[Create React App] is a good example of this.

[Create React App]: (https://reactjs.org/docs/create-a-new-react-app.html#create-react-app)

Using environment variables to support CSS Grid prefixes in Create React App


1. Install the latest version of Autoprefixer and cross-env:

  1. ```
  2. npm install autoprefixer@latest cross-env --save-dev
  3. ```

2. Under "browserslist" > "development" in the package.json file, add "last 1 ie version"

  1. ```
  2. "browserslist": {
  3.   "production": [
  4.     ">0.2%",
  5.     "not dead",
  6.     "not op_mini all"
  7.   ],
  8.   "development": [
  9.     "last 1 chrome version",
  10.     "last 1 firefox version",
  11.     "last 1 safari version",
  12.     "last 1 ie version"
  13.   ]
  14. }
  15. ```

3. Update "scripts" in the package.json file to the following:

  1. ```
  2. "scripts": {
  3.   "start": "cross-env AUTOPREFIXER_GRID=autoplace react-scripts start",
  4.   "build": "cross-env AUTOPREFIXER_GRID=autoplace react-scripts build",
  5.   "test": "cross-env AUTOPREFIXER_GRID=autoplace react-scripts test",
  6.   "eject": "react-scripts eject"
  7. },
  8. ```

Replace autoplace with no-autoplace in the above example if you prefer to disable Autoprefixer Grid autoplacement support.

Now when you run npm start you will see CSS Grid prefixes automatically being applied to your output CSS.

See also [Browserslist environment variables] for more examples on how to use environment variables in your project.

[Browserslist environment variables]: https://github.com/browserslist/browserslist#environment-variables

Grid Autoplacement support in IE


If the grid option is set to "autoplace", limited autoplacement support is added to Autoprefixers grid translations. You can also use
the `/ autoprefixer grid: autoplace /` control comment or
AUTOPREFIXER_GRID=autoplace npm build environment variable.

Autoprefixer will only autoplace grid cells if both grid-template-rows
and grid-template-columns has been set. If grid-template
or grid-template-areas has been set, Autoprefixer will use area based
cell placement instead.

Autoprefixer supports autoplacement by using nth-child CSS selectors.
It creates [number of columns] x [number of rows] nth-child selectors.
For this reason Autoplacement is only supported within the explicit grid.

  1. ```css
  2. /* Input CSS */

  3. /* autoprefixer grid: autoplace */

  4. .autoplacement-example {
  5.   display: grid;
  6.   grid-template-columns: 1fr 1fr;
  7.   grid-template-rows: auto auto;
  8.   grid-gap: 20px;
  9. }
  10. ```

  1. ```css
  2. /* Output CSS */

  3. /* autoprefixer grid: autoplace */

  4. .autoplacement-example {
  5.   display: -ms-grid;
  6.   display: grid;
  7.   -ms-grid-columns: 1fr 20px 1fr;
  8.   grid-template-columns: 1fr 1fr;
  9.   -ms-grid-rows: auto 20px auto;
  10.   grid-template-rows: auto auto;
  11.   grid-gap: 20px;
  12. }

  13. .autoplacement-example > *:nth-child(1) {
  14.   -ms-grid-row: 1;
  15.   -ms-grid-column: 1;
  16. }

  17. .autoplacement-example > *:nth-child(2) {
  18.   -ms-grid-row: 1;
  19.   -ms-grid-column: 3;
  20. }

  21. .autoplacement-example > *:nth-child(3) {
  22.   -ms-grid-row: 3;
  23.   -ms-grid-column: 1;
  24. }

  25. .autoplacement-example > *:nth-child(4) {
  26.   -ms-grid-row: 3;
  27.   -ms-grid-column: 3;
  28. }
  29. ```

Beware of enabling autoplacement in old projects


Be careful about enabling autoplacement in any already established projects that have
previously not used Autoprefixer's grid autoplacement feature before.

If this was your html:

  1. ``` html
  2. <div class="grid">
  3.   <div class="grid-cell"></div>
  4. </div>
  5. ```

The following CSS will not work as expected with the autoplacement feature enabled:

  1. ```css
  2. /* Unsafe CSS when Autoplacement is enabled */

  3. .grid-cell {
  4.   grid-column: 2;
  5.   grid-row: 2;
  6. }

  7. .grid {
  8.   display: grid;
  9.   grid-template-columns: repeat(3, 1fr);
  10.   grid-template-rows: repeat(3, 1fr);
  11. }
  12. ```

Swapping the rules around will not fix the issue either:

  1. ```css
  2. /* Also unsafe to use this CSS */

  3. .grid {
  4.   display: grid;
  5.   grid-template-columns: repeat(3, 1fr);
  6.   grid-template-rows: repeat(3, 1fr);
  7. }

  8. .grid-cell {
  9.   grid-column: 2;
  10.   grid-row: 2;
  11. }
  12. ```

One way to deal with this issue is to disable autoplacement in the
grid-declaration rule:

  1. ```css
  2. /* Disable autoplacement to fix the issue */

  3. .grid {
  4.   /* autoprefixer grid: no-autoplace */
  5.   display: grid;
  6.   grid-template-columns: repeat(3, 1fr);
  7.   grid-template-rows: repeat(3, 1fr);
  8. }

  9. .grid-cell {
  10.   grid-column: 2;
  11.   grid-row: 2;
  12. }
  13. ```

The absolute best way to integrate autoplacement into already existing projects
though is to leave autoplacement turned off by default and then use a control
comment to enable it when needed. This method is far less likely to cause
something on the site to break.

  1. ```css
  2. /* Disable autoplacement by default in old projects */
  3. /* autoprefixer grid: no-autoplace */

  4. /* Old code will function the same way it always has */
  5. .old-grid {
  6.   display: grid;
  7.   grid-template-columns: repeat(3, 1fr);
  8.   grid-template-rows: repeat(3, 1fr);
  9. }
  10. .old-grid-cell {
  11.   grid-column: 2;
  12.   grid-row: 2;
  13. }

  14. /* Enable autoplacement when you want to use it in new code */
  15. .new-autoplace-friendly-grid {
  16.   /* autoprefixer grid: autoplace */
  17.   display: grid;
  18.   grid-template-columns: repeat(3, 1fr);
  19.   grid-template-rows: repeat(3, auto);
  20. }
  21. ```

Note that the grid: "no-autoplace" setting and the
`/ autoprefixer grid: no-autoplace /` control comment share identical
functionality to the grid: true setting and the `/ autoprefixer grid: on /`
control comment. There is no need to refactor old code to use no-autoplace
in place of the old true and on statements.

Autoplacement limitations


Both columns and rows must be defined


Autoplacement only works inside the explicit grid. The columns and rows need to be defined
so that Autoprefixer knows how many nth-child selectors to generate.

  1. ```css
  2. .not-allowed {
  3.   display: grid;
  4.   grid-template-columns: repeat(3, 1fr);
  5. }

  6. .is-allowed {
  7.   display: grid;
  8.   grid-template-columns: repeat(3, 1fr);
  9.   grid-template-rows: repeat(10, auto);
  10. }
  11. ```

Repeat auto-fit and auto-fill are not supported


The repeat(auto-fit, ...) and repeat(auto-fill, ...) grid functionality relies on
knowledge from the browser about screen dimensions and the number of available grid
items for it to work properly. Autoprefixer does not have access to this information
so unfortunately this little snippet will _never_ be IE friendly.

  1. ```css
  2. .grid {
  3.   /* This will never be IE friendly */
  4.   grid-template-columns: repeat(auto-fit, min-max(200px, 1fr))
  5. }
  6. ```

No manual cell placement or column/row spans allowed inside an autoplacement grid


Elements must not be manually placed or given column/row spans inside
an autoplacement grid. Only the most basic of autoplacement grids are supported.
Grid cells can still be placed manually outside the the explicit grid though.
Support for manually placing individual grid cells inside an explicit
autoplacement grid is planned for a future release.

  1. ```css
  2. .autoplacement-grid {
  3.   display: grid;
  4.   grid-template-columns: repeat(3, 1fr);
  5.   grid-template-rows: repeat(3, auto);
  6. }

  7. /* Grid cells placed inside the explicit grid
  8.    will break the layout in IE */
  9. .not-permitted-grid-cell {
  10.   grid-column: 1;
  11.   grid-row: 1;
  12. }

  13. /* Grid cells placed outside the
  14.    explicit grid will work in IE */
  15. .permitted-grid-cell {
  16.   grid-column: 1 / span 2;
  17.   grid-row: 4;
  18. }
  19. ```

If manual cell placement is required, we recommend using grid-template or
grid-template-areas instead:

  1. ```css
  2. .page {
  3.   display: grid;
  4.   grid-gap: 30px;
  5.   grid-template:
  6.       "head head"
  7.       "nav main" minmax(100px, 1fr)
  8.       "foot foot" /
  9.       200px 1fr;
  10. }
  11. .page__head {
  12.   grid-area: head;
  13. }
  14. .page__nav {
  15.   grid-area: nav;
  16. }
  17. .page__main {
  18.   grid-area: main;
  19. }
  20. .page__footer {
  21.   grid-area: foot;
  22. }
  23. ```

Do not create ::before and ::after pseudo elements


Let's say you have this HTML:

  1. ``` html
  2. <div class="grid">
  3.   <div class="grid-cell"></div>
  4. </div>
  5. ```

And you write this CSS:

  1. ```css
  2. .grid {
  3.   display: grid;
  4.   grid-template-columns: 1fr 1fr;
  5.   grid-template-rows: auto;
  6. }

  7. .grid::before {
  8.   content: 'before';
  9. }

  10. .grid::after {
  11.   content: 'after';
  12. }
  13. ```

This will be the output:

  1. ```css
  2. .grid {
  3.   display: -ms-grid;
  4.   display: grid;
  5.   -ms-grid-columns: 1fr 1fr;
  6.   grid-template-columns: 1fr 1fr;
  7.   -ms-grid-rows: auto;
  8.   grid-template-rows: auto;
  9. }

  10. .grid > *:nth-child(1) {
  11.   -ms-grid-row: 1;
  12.   -ms-grid-column: 1;
  13. }


  14. .grid > *:nth-child(2) {
  15.   -ms-grid-row: 1;
  16.   -ms-grid-column: 2;
  17. }

  18. .grid::before {
  19.   content: 'before';
  20. }

  21. .grid::after {
  22.   content: 'after';
  23. }
  24. ```

IE will place .grid-cell, ::before and ::after in row 1 column 1.
Modern browsers on the other hand will place ::before in row 1 column 1,
.grid-cell in row 1 column 2, and ::after in row 2 column 1.

See this CodePen to see a visualization
of the issue. View the CodePen in both a modern browser and IE to see the difference.

Note that you can still create ::before and ::after elements as long as you manually
place them outside the explicit grid.

When changing the grid gap value, columns and rows must be re-declared


If you wish to change the size of a grid-gap, you will need to redeclare the grid columns and rows.

  1. ```css
  2. .grid {
  3.   display: grid;
  4.   grid-template-columns: 1fr 1fr;
  5.   grid-template-rows: auto;
  6.   grid-gap: 50px;
  7. }

  8. /* This will *NOT* work in IE */
  9. @media (max-width:
  10.   .grid {
  11.     grid-gap: 20px;
  12.   }
  13. }

  14. /* This will *NOT* work in IE */
  15. .grid.small-gap {
  16.   grid-gap: 20px;
  17. }
  18. ```

  1. ```css
  2. .grid {
  3.   display: grid;
  4.   grid-template-columns: 1fr 1fr;
  5.   grid-template-rows: auto;
  6.   grid-gap: 50px;
  7. }

  8. /* This *WILL* work in IE */
  9. @media (max-width:
  10.   .grid {
  11.     grid-template-columns: 1fr 1fr;
  12.     grid-template-rows: auto;
  13.     grid-gap: 20px;
  14.   }
  15. }

  16. /* This *WILL* work in IE */
  17. .grid.small-gap {
  18.   grid-template-columns: 1fr 1fr;
  19.   grid-template-rows: auto;
  20.   grid-gap: 20px;
  21. }
  22. ```

Debug


Run npx autoprefixer --info in your project directory to check
which browsers are selected and which properties will be prefixed:

  1. ```console
  2. $ npx autoprefixer --info
  3. Browsers:
  4.   Edge: 16

  5. These browsers account for 0.26% of all users globally

  6. At-Rules:
  7.   @viewport: ms

  8. Selectors:
  9.   ::placeholder: ms

  10. Properties:
  11.   appearance: webkit
  12.   flow-from: ms
  13.   flow-into: ms
  14.   hyphens: ms
  15.   overscroll-behavior: ms
  16.   region-fragment: ms
  17.   scroll-snap-coordinate: ms
  18.   scroll-snap-destination: ms
  19.   scroll-snap-points-x: ms
  20.   scroll-snap-points-y: ms
  21.   scroll-snap-type: ms
  22.   text-size-adjust: ms
  23.   text-spacing: ms
  24.   user-select: ms
  25. ```

JS API is also available:

  1. ``` js
  2. console.log(autoprefixer().info())
  3. ```

Security Contact


To report a security vulnerability, please use the [Tidelift security contact].
Tidelift will coordinate the fix and disclosure.

[Tidelift security contact]: https://tidelift.com/security

For Enterprise


Available as part of the Tidelift Subscription.

The maintainers of autoprefixer and thousands of other packages are working
with Tidelift to deliver commercial support and maintenance for the open source
dependencies you use to build your applications. Save time, reduce risk,
and improve code health, while paying the maintainers of the exact dependencies
you use. Learn more.