autoprefixer: [css-grid] -ms-grid-columns -- wrong auto-fill value

input:

grid-template-columns:repeat(auto-fill,minmax(400px,1fr));

output:

-ms-grid-columns:(minmax(400px,1fr))[auto-fill];
grid-template-columns:repeat(auto-fill,minmax(400px,1fr));

browsers: last 4 version

About this issue

  • Original URL
  • State: closed
  • Created 6 years ago
  • Reactions: 3
  • Comments: 24 (14 by maintainers)

Most upvoted comments

same problem here. Just upgraded from Angular 5 to 6 and i got errors like these:

WARNING in ./somepath/some.component.scss (Emitted value instead of an instance of Error) autoprefixer: …/somepath/some.component.scss:190:33: auto-fill value is not supported by IE

WARNING in ./someotherpath/someother.component.scss (Emitted value instead of an instance of Error) autoprefixer: …/someotherpath/someother.component.scss:18:29: auto-fill value is not supported by IE

i’ll be happy to provide anything you need to find a way to remove these warnings which are pretty annoying

@nazarkryp just remove grid: true option from your Autoprefixer

Was released in 8.6.3

Yes, I’ll do it. Let’s dedicate this weekend to “warnings” 😃