【发布时间】:2014-02-19 19:08:10
【问题描述】:
我一直在使用 Apple 的 Xcode 工具(iOS 模拟器)对 iPad 视图进行编码。我无法在 iPad Retina 设备上定位横向视图。 我一直在尝试以下媒体查询...
@media only screen and (min-device-width : 768px) and (max-device-width
: 1024px) and (orientation : landscape) and ( -webkit-min-device-
pixel-ratio: 2){ //style goes here// }
@media only screen and (min-device-width : 1536px) and (max-device-width
: 2048px) and (orientation : landscape) and ( -webkit-min-device-
pixel-ratio: 2){ //style goes here// }
我找不到任何其他方法来定位 iPad Retina 中的横向视图。我什至在 CSS 文件的不同部分尝试过这段代码,但仍然没有运气。
【问题讨论】:
标签: ios css wordpress ipad media-queries