My responsive website was functioning perfectly on desktop, Android, and Windows Phone devices. However, when I asked my friends to check it on their iPhones running iOS 10, they informed me that the media queries were being ignored on iPhone models 5, 5s, 6, and 6s+. This came as a surprise to me since scaling the website in Chrome showed no issues.
I have already included the meta viewport tag in the head section of my site.
Here is the media query causing the problem:
@media (min-device-width: 220px) and (max-device-width: 480px)
{
/*my styling*/
}