如何定位宽度超过 1000 像素的设备?也就是说,包括横向模式的 iPad 和大多数台式机,但纵向模式的 iPad 除外。
我找到了如何专门针对 iPad:
/* iPads (landscape) ----------- */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : landscape) {
/* Styles */
}
/* iPads (portrait) ----------- */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : portrait) {
/* Styles */
}
但是,如果我的媒体查询可以通过内容提示布局更改的宽度而不是特定设备来塑造,我会更喜欢。