Collectives™ on Stack Overflow
Find centralized, trusted content and collaborate around the technologies you use most.
Learn more about Collectives
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Learn more about Teams
I have a new project that was created with Vue-cli 3 using
vue create my-new-project
. I am using CSS grid for some layout things and i need to support IE11 and newer. Vue docs say that autoprefixer is loaded and enabled by default but its not working. I cant get it to work in either npm run build or npm run serve. Works fine in chrome but IE11 its not working. Im sure there is some config that needs to be done but im unsure what that may be.
.browserslistrc:
last 4 versions
postcss.config.js:
module.exports = {
plugins: {
autoprefixer: {}
CSS Grid support is disable by default.
You can enable it by using either the grid: autoplace
option or the /* autoprefixer grid: autoplace */
control comment.
module.exports = {
plugins: {
'autoprefixer': {
grid: 'autoplace'
Does Autoprefixer polyfill Grid Layout for IE?
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.