-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Autoprefixer fails on combination of @supports and grid-template-columns #1244
Autoprefixer fails on combination of @supports and grid-template-columns #1244
Comments
@smashercosmo sorry, I missed this issue. This code works without any problem: let autoprefixer = require('.')
let postcss = require('postcss')
let css = `
@supports (grid-template-columns: 1fr) {
.columns {
grid-template-columns: 1fr;
}
}`
console.log(postcss([autoprefixer({ grid: 'autoplace' })]).process(css).css) Maybe the bug was fixed? Can you check it again? If the issue is still actual, can you give me full stack trace? |
If you paste this code into https://autoprefixer.github.io/ you'll get this error (but it's possible that this service uses the old version of autoprefxer) |
Yes, it uses [email protected] |
I got the correct output in the online tool too. What browsers do you have there? |
You will see this error if you set |
Fixed cc827ab |
👍👍👍 thx |
Released in 9.7 |
The following snippet
results in error
The text was updated successfully, but these errors were encountered: