I'm building a responsive design and everything is fine apart from I can't seem to target iPhone 3g users.
I've added the following media queries but the first one (max-width:320px) doesn't seem to work
@media screen and (max-width: 320px) {
// STYLES GO HERE
}
@media screen and (min-width: 321px) and (max-width: 640px) {
//STYLES GO HERE
}
Am I doing something wrong?