有没有一种方法可以查询所有手持设备/智能手机的 css-@media,而与它们的尺寸(宽度、高度)无关。
我知道,我不能使用@handheld。
我试过这样:
@media only screen and (orientation: portrait) or (orientation:landscape){
}
这样:
@media only screen and (max-device-width:3000px) or (max-device-height: 1300px){
}
但它不起作用。我不想给出一堆与数十种不同尺寸的智能手机相关的@media-queries。有没有办法通过@media 查询来指示手持设备?我不想通过 javascript 使用浏览器嗅探。