Apple · tablet · 2021
iPad mini (6th generation) screen size
September 2021 redesign giving the mini an all-screen 8.3-inch Liquid Retina LCD, USB-C, and A15. Its 744px portrait width falls just below the common 768px tablet breakpoint, so it often receives phone layouts in portrait — a classic responsive edge case worth testing.
- CSS viewport
- 744 × 1133
- Physical pixels
- 1488 × 2266
- Pixel ratio
- 2x
- PPI
- 326
- Screen size
- 8.3"
Media queries
Target this device (portrait)
@media only screen and (device-width: 744px) and (device-height: 1133px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
/* styles */
}Viewport width and up
@media (min-width: 744px) {
/* styles */
}Viewport width and down
@media (max-width: 744px) {
/* styles */
}