CSS media query to detect device type regardless of size

前端 未结 1 1348
再見小時候
再見小時候 2021-01-20 23:51

I have been looking into media queries, but so far all the examples I can find on google and Stack Overflow have been to use specific sizes (max-width, max-de

相关标签:
1条回答
  • 2021-01-21 00:05

    It's not possible with media queries. There is a "handheld" media type, but most, if not all modern handheld devices identify themselves as "screen".

    To do it with javascript, see this question: What's the best way to detect a 'touch screen' device using JavaScript?

    0 讨论(0)
提交回复
热议问题