This content originally appeared on Bram.us and was authored by Bramus!
Kilian Valkhof recently needed to check if prefers-reduced-data
was supported by the browser or not
For this, I couldn’t use just
@media (prefers-reduced-data: no-preference)
because that would be false if either there was no support (since the browser wouldn’t understand the media query) or if it was supported but the user wanted to preserve data.What I needed was a test for the media feature regardless of its value. It turns out we can do that by using the or notation in media queries.
The result is a pretty mind-bending at-rule:
@media not all and (prefers-reduced-data), (prefers-reduced-data) {
…
}
I don’t fully grasp it but if Kilian says it works, I trust him on that. Thankfully the JS version is a bit easier (and that one I do understand entirely).
Detecting media query support in CSS and JavaScript →
This content originally appeared on Bram.us and was authored by Bramus!
Bramus! | Sciencx (2021-07-21T21:52:47+00:00) Detecting media query support in CSS and JavaScript. Retrieved from https://www.scien.cx/2021/07/21/detecting-media-query-support-in-css-and-javascript-2/
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.