We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If I run autoprefixer on the following code:
.test { outline: 0; /* Random comment */ box-shadow: 0 0 8px rgba(82,168,236,.6); }
It is converted to:
.test { outline: 0; /* Random comment */ -webkit-box-shadow: 0 0 8px rgba(82,168,236,.6); /* Random comment */ box-shadow: 0 0 8px rgba(82,168,236,.6); }
The comment from the preceding line is copied to the prefixed lines.
This happens with the default settings.
The text was updated successfully, but these errors were encountered:
It is already fixed in PostCSS 0.3 (it parse comments between declarations as separated node). Will be released in next 1.1 version at next week.
Sorry, something went wrong.
Thanks for the feedback!
Good to know it's been fixed and I'll wait for the 1.1 release.
Autoprefixer master now uses PostCSS 0.3 “Prince Seere” with inline source map support: e32fda7 On next week fix will be released in 1.1.
Version 1.1 with this fix was released today.
No branches or pull requests
If I run autoprefixer on the following code:
It is converted to:
The comment from the preceding line is copied to the prefixed lines.
This happens with the default settings.
The text was updated successfully, but these errors were encountered: