I am having a huge problem. In my stylesheet I have:
@media only screen and (min-width: 320px) and (max-width: 700px)
{
code1
}
@media only screen and (min-width: 1280px) and (max-width: 1400px)
{
code2
}
my browser window is currently 640x960, so only code1 should run... right? But code1 and code2 are both running. How do I change my media queries so that only code1 will run with my browser window at 640x960?