我只想要 iPad 横向真实设备的媒体查询?

I want media queries for iPad landscape real device only?

-> 你好,我想要 媒体查询 用于 iPad 横向真实设备 。我曾尝试跟踪媒体查询,但在纵向和横向视图中都可以正常工作,但只想要横向且只有相对设备未在任何浏览器中显示任何想法请帮助我。 提前致谢

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), 只有屏幕和(最小分辨率:144dpi), 仅屏幕和(最小分辨率:1.5dppx){}

我在媒体查询上方使用,但也以纵向显示,但我只想要横向

您可以在媒体查询中定位 orientation

@media (orientation: landscape) {
  // your css
}

https://developer.mozilla.org/en-US/docs/Web/CSS/@media/orientation

来自上述来源的注释:

Note: This feature does not correspond to device orientation. Opening the soft keyboard on many devices in portrait orientation will cause the viewport to become wider than it is tall, thereby causing the browser to use landscape styles instead of portrait.