Reputation: 35
I have used this media query :
@media only screen and (min-device-width: 1366px) and (max-device-width: 1024px) and (orientation: landscape) webkit-min-device-pixel-ratio: 2) {}
but this code isn't working in chrome ipad pro extension. please any one help.
Upvotes: 2
Views: 740
Reputation: 1104
i think you have misplaced the values. try this :
@media only screen and (max-device-width: 1024px) and (min-device-width: 1366px) and (orientation: landscape) webkit-min-device-pixel-ratio: 2) {}
Upvotes: 1