@media only screen
and (min-device-width : 320px)
and (min-device-height: 480px)
@media only screen
and (min-device-width : 480px)
and (min-device-height: 640px)
我只想要我们在此设置的任何样式,都应提及高度和宽度。
最佳答案
如果要定位那些确切的分辨率,则只需删除min-
前缀,而只需指定device-width
和device-height
:
@media only screen
and (device-width : 320px)
and (device-height: 480px) { ... }
@media only screen
and (device-width : 480px)
and (device-height: 640px) { ... }
W3C reference。
关于css - 有什么方法可以设置针对特定设备宽度和高度的媒体查询?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19432686/