Apple · tablet · 2024
iPad mini (7th generation) screen size
October 2024 update with the A17 Pro and Apple Pencil Pro support, keeping the 8.3-inch Liquid Retina LCD. The 744x1133 viewport is unchanged from the mini 6, so it still straddles the 768px breakpoint: phone-style layouts in portrait, tablet layouts in landscape.
- 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 */
}