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 answers
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.