I'm using the following media query in my css:
@media screen and (max-device-width: 480px) {}
This looks fine on my older iphone 3g ... but when I change orientation from portrait to landscape.. it blows up.. way too big, way too wide.
I've tried this:
@media only screen and (min-device-width : 320px) and (max-device-width : 480px {}
Didn't help.
Any suggestions?
I would rather NOT put in a landscape specific query - I would like a generic one if possible.
(and Yes pinching the screen down kinda works.. but is not the user experience I am looking for.)
Thanks JD