How to enable grid:true in postcss autoprefixer

Hey @frissekom,

Been a while, but try this in postcss.config.js. Change:

autoprefixer: true,

To:

autoprefixer: { grid: true },

But make sure you’re familiar how it works with IE11–it’s not necessarily going to be a plug and play solution. Start here and here.

3 Likes