I'm having a hard time using media queries for the different iPads screens. These are the ones I'm using:
iPad Pro in portrait mode only
@media only screen and (min-width: 1024px) and (max-width: 1366px) and (orientation : portrait)
iPad 10 in portrait mode only
@media only screen and (min-width: 810px) and (max-width: 1080px) and (orientation : portrait)
iPad Air 2 in portrait mode only
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation : portrait)
Here's my issue. Let's say I set my background blue for iPad Pro, and a background red for iPad 10. The iPad Pro's background will also be red.
How can I target each iPad specifically?