I have been looking everywhere online for the iPod touch 6 generation media queries but I couldn't find anything useful. Please help me.
What is the iPod Touch 6G media query?
942 Views Asked by Comfort to Go At
3
There are 3 best solutions below
0
On
This should work. The 6th generation iPod touch is a Retina display with a pixel width of 640px. This amounts to 320px with a ratio of 2.
@media only screen and (device-width: 320px) and (-webkit-min-device-pixel-ratio: 2)
0
On
Here's a list of most media queries:
/* Custom, iPhone Retina */ @media only screen and (min-width : 320px) {
}
/* Extra Small Devices, Phones */ @media only screen and (min-width : 480px) {
}
/* Small Devices, Tablets */ @media only screen and (min-width : 768px) {
}
/* Medium Devices, Desktops */ @media only screen and (min-width : 992px) {
}
/* Large Devices, Wide Screens */ @media only screen and (min-width : 1200px) {
}
Below is the solution specific to your requirements.
In order to find out about the media queries of any device, simply Google to find out the screen resolution of the device and use that value for media query.