-
Notifications
You must be signed in to change notification settings - Fork 13
Add definition for not
and only
keywords in @media reference
#91
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
Comments
Thanks @xavierfoucrier! We'll do that! |
Thanks @crnacura 😎 ! |
Hi @crnacura, Any update about this issue? |
Sorry @xavierfoucrier, we didn't have any time yet! If you'd like to jump in with the definitions, I'd be very grateful! :) |
Hi @crnacura, Thanks for the feedback, it was just to know if this is something that you have planned. I will add this to my todo list and work on a PR to bring all the definitions. Again thanks for your time and the awesome work you are doing all days 😉 |
Hello @crnacura, Just a question, as there is no source code here in this repository, how do I send definitions about those keywords? Thanks a lot! 😉 |
Hi @xavierfoucrier, |
Hello @crnacura! Here they are, I just retrieve a part of the MDN documentation and adjust to fit the context. Logical operatorsThe logical operators
|
You rock, thank you! Just updated the entry: https://tympanus.net/codrops/css_reference/media/ |
Thanks a lot @crnacura! May be adding Closing the issue right now! |
Hello @crnacura, I come into the documentation again recently and didn't found the examples with /* ... other examples */
@media screen and (device-aspect-ratio: 16/9) {
/* styles applied to screen device with square pixels has 1280 horizontal pixels and 720 vertical pixels (commonly referred to as "16:9") */
}
/* missing examples with only/not */
@media only print and (min-width: 800px) {
/* styles applied when the page width is larger than 800 pixels, only in print mode */
}
@media not screen and (min-width: 400px) and (max-width: 600px) {
/* styles applied when the page width is between 0-399 and 601-* */
} Thanks! |
Write a short definition for the
not
andonly
keywords that can be used in a media query, for example to explain how a media query can be reversed:Here is the link to the specified page:
https://tympanus.net/codrops/css_reference/media.
Thanks again for the work on this site, I am using it all days 😉
The text was updated successfully, but these errors were encountered: