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
Firstly thanks for this incredibly useful tool!
I think I found a bug when using a specific media query:
This code produces a Parse Error:
Parse Error
@media (-webkit-min-device-pixel-ratio: 1.5) and (min-width: 320px), (min-resolution: 144dpi) and (min-width: 320px) { body { color: red } }
while prefixing the same query with any media type like all and it is considered valid:
all and
@media all and (-webkit-min-device-pixel-ratio: 1.5) and (min-width: 320px), (min-resolution: 144dpi) and (min-width: 320px) { body { color: red } }
I think both versions should be valid, as the all media type is implicitly implied when omitted as in my first snippet: https://developer.mozilla.org/en-US/docs/Web/CSS/@media#media_types
all
The text was updated successfully, but these errors were encountered:
This is most probably due to the fact that vendor extensions are not checked, so `@media and (...) will fail. Indeed a bug
Sorry, something went wrong.
add a default media if the list is empty and a mediafeature is about …
de91519
…to be added
No branches or pull requests
Firstly thanks for this incredibly useful tool!
I think I found a bug when using a specific media query:
This code produces a
Parse Error
:while prefixing the same query with any media type like
all and
it is considered valid:I think both versions should be valid, as the
all
media type is implicitly implied when omitted as in my first snippet: https://developer.mozilla.org/en-US/docs/Web/CSS/@media#media_typesThe text was updated successfully, but these errors were encountered: