I have the following media screens:
/*
768px - 1280px
WXGA - (Windows Phone com DPI alta)
*/
@media only screen
and (min-device-width: 768px)
and (max-device-width: 1280px)
and (orientation: portrait){}
@media only screen
and (min-device-width: 768px)
and (max-device-width: 1280px)
and (orientation: landscape){}
/*
1024px - 768px
XGA - (Ipad)
*/
@media only screen
and (min-device-width: 768px)
and (max-device-width: 1024px)
and (orientation: portrait){}
@media only screen
and (min-device-width: 768px)
and (max-device-width: 1024px)
and (orientation: landscape){}
/*
1366px - 768px
WXGA - (Ultrabook)
*/
@media only screen
and (min-device-width: 768px)
and (max-device-width: 1366px)
and (orientation: portrait){}
@media only screen
and (min-device-width: 768px)
and (max-device-width: 1366px)
and (orientation: landscape){}
However, there are three (3) rearrangements that have the same pixel, So he is entering the first 768px without being able to modify it for others.
I would like to know how I do to fix this, since I have (3) resolutions that are as follows:
768x1280
1024x768
1366x768