我一直在网上寻找iPod touch 6代媒体查询,但我找不到任何有用的东西。请帮帮我。
答案 0 :(得分:0)
这应该有效。第六代iPod touch是一款Retina显示屏,像素宽度为640px。这相当于320px,比率为2.
@media only screen and (device-width: 320px) and (-webkit-min-device-pixel-ratio: 2)
答案 1 :(得分:0)
以下是针对您的要求的解决方案。
@media only screen and (min-device-width : 320px) and (max-device-width : 640px) {
/* STYLES GO HERE */
}
为了了解任何设备的媒体查询,只需谷歌查找设备的屏幕分辨率并使用该值进行媒体查询。
答案 2 :(得分:0)
以下是大多数媒体查询的列表:
/ *自定义,iPhone Retina * / @media only screen and(min-width:320px){
}
/ *超小型设备,手机* / @media only screen and(min-width:480px){
}
/ *小型设备,平板电脑* / @media only screen and(min-width:768px){
}
/ *中型设备,台式机* / @media only screen and(min-width:992px){
}
/ *大型设备,宽屏幕* / @media only screen and(min-width:1200px){
}