I've been looking around for some standards for 'Responsive Design' and most of the time i end up with something similar to this --> Responsive Design.
However! it says most pages says that i should be using the following min-width and max-width for smartphones, and i know that MY smartphone as a resolution of 720 x 1280 And would not fit the media query below!
/* Smartphones (portrait and landscape) ----------- */
@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px) {
/* Styles */
}
/* Smartphones (landscape) ----------- */
@media only screen
and (min-width : 321px) {
/* Styles */
}
What is the best way to go? I want my android device with 1280 x 720 (in landscape orientation) to use one css and a desktop PC with 1280 x 720 to use another.