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
As a developer, I'd like to be able to use logical operators in media queries passed in "sizes" strings. E.g.:
<img sizes="(min-width: 30em) and (max-width: 50em) 1000px, 500px" srcset="pict1.jpg 500w, pict2.jpg 1000w" alt="Lorem ipsum">
This works natively in latest Chrome release.
W3C specs do not and probably will not disallow this: http://www.w3.org/html/wg/drafts/html/master/semantics.html#attr-img-sizes
Plus it complies with current & future MQ specs: http://drafts.csswg.org/mediaqueries/
The text was updated successfully, but these errors were encountered:
This is already allowed per spec, because we just reference <media-condition>, and that's defined in MQ4 to allow boolean algebra.
<media-condition>
Sorry, something went wrong.
No branches or pull requests
przemyslaw-piatek commentedMar 19, 2015
As a developer, I'd like to be able to use logical operators in media queries passed in "sizes" strings.
E.g.:
This works natively in latest Chrome release.
W3C specs do not and probably will not disallow this:
http://www.w3.org/html/wg/drafts/html/master/semantics.html#attr-img-sizes
Plus it complies with current & future MQ specs:
http://drafts.csswg.org/mediaqueries/
The text was updated successfully, but these errors were encountered: