I have used the below media query CSS code but in iPad Pro 12.9 it's not working somehow. Below is the code:
/* Landscape */
@media only screen
and (min-device-width : 1024px)
and (max-device-width : 1366px)
and (orientation : landscape) {
}
/* Landscape */
@media only screen
and (min-device-width: 1024px)
and (max-device-width: 1366px)
and (orientation: landscape)
and (-webkit-min-device-pixel-ratio: 1.5) {
}
/* Landscape */
@media only screen and (min-device-width: 1366px)
and (max-device-height: 1024px)
and (-webkit-min-device-pixel-ratio: 2)
and (orientation: landscape) {
}
I have referred following solutions but somehow it is not working for me.
Can someone help me here to make this one effective for iPad Pro 12.9 inches?