你好,我的工作与多个平板电脑设备,iPad,Galaxy Tab,宏基 Iconia,LG 3D 平板电脑等。
我想只使用 CSS3媒体查询目标 iPad。因为,LG 和 iPad 的设备宽度是相同的768px-我有麻烦分开每个设备。
我曾试图分开,但似乎没有工作:
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation : portrait) /* applied to lg also */
@media only screen and (min-resolution: 132dpi) and (max-device-width: 1024px) and (orientation : portrait) /* applies to lg also */
@media only screen and (device-aspect-ratio: 1024/768) and (orientation : portrait) /* does not work on iPad or LG */
我不知道 webkit 设备像素比和其他 webkit * 的选项,也不知道它们对 iPad 的价值。我不想在样式中使用 JavaScript,有什么想法吗?