How to detect media query support
Written by Stefan Judis
- Published at
- Updated at
- Reading time
- 1min
This one is a real brain teaser. ๐
Kilian Valkhof published Detecting media query support in CSS and JavaScript and I had to read it a few times to understand its logic.
In short: that's how you can detect if a browser supports prefers-reduced-data
CSS media query:
/* Apply if prefers-reduced-data is supported */
@media not all and (prefers-reduced-data), (prefers-reduced-data) {
...
}
In long: read Killian's post.
If you enjoyed this article...
Join 5.1k readers and learn something new every week with Web Weekly.