How to enable grid:true in postcss autoprefixer

Hi,

currently I’m working on a new project with the famous sage 9 framework, I’m quite new to webpack. But after testing on various browsers we found out that css grid is not working well on IE11. On the internet I found a possible solution where you need to add grid:true on autoprefixer. I’m not aware where to place this.

Could you help me out?

1 Like

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