Muhammad Saqib
Muhammad Saqib

Reputation: 35

Media Query for IPad Pro not working in chrome

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

Answers (1)

Muhammad Shaharyar
Muhammad Shaharyar

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

Related Questions