Sorry for the oversized images!
I'm diving into media queries for the first time. When I adjust my browser window to 320px, here's how my site displays:
This is what I want it to look like on mobile phones. However, when I view it on my iPhone, it appears differently:
Here is the media query I have implemented:
@media only screen and (min-device-width : 320px)
and (max-device-width : 480px),
screen and (max-width : 850px) {
The issue seems to be that the iphone width is greater than 320px. How can I achieve the desired look on devices with resolutions similar to the second image?