Native resolution 1488 × 2266 px at 2× · 326 PPI · 8.3″ · 1:1.52. Design at 744 × 1133 and export assets at 2×.
| Property | Value |
|---|---|
| CSS viewport (portrait) | 744 × 1133 px |
| CSS viewport (landscape) | 1133 × 744 px |
| Native resolution | 1488 × 2266 px |
| Device pixel ratio | 2× |
| Pixel density | 326 PPI |
| Screen diagonal | 8.3 in |
| Panel size | 4.56 × 6.95 in |
| Aspect ratio | 1:1.52 (exact 744:1133) |
| Total pixels | 3.37 MP |
| Released | 2021 |
| Operating system | iPadOS |
| Safe area (top / bottom) | 24 / 20 px |
Among the 43 tablets on this site, the iPad mini (6th gen) has the 37th largest CSS viewport area. Its 744 px width is 116 px below the 860 px average for this category.
Targeting the iPad mini (6th gen) in CSS
Device-specific media queries are brittle — a new model with the same width will not match. Use them for genuine per-device fixes only, and prefer width buckets for layout.
/* Target iPad mini (6th gen) specifically */
@media only screen
and (device-width: 744px)
and (device-height: 1133px)
and (-webkit-device-pixel-ratio: 2) {
/* … */
}
/* More useful in practice — the width bucket it falls into */
@media (min-width: 744px) { /* … */ }
Safe area on the iPad mini (6th gen)
iPad mini, home indicator. Content placed inside the top 24 px or the bottom 20 px will sit under system UI unless you inset it.
/* iPad mini (6th gen) safe area — requires viewport-fit=cover */
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
.app {
padding-top: env(safe-area-inset-top); /* 24px */
padding-bottom: env(safe-area-inset-bottom); /* 20px */
padding-left: env(safe-area-inset-left);
padding-right: env(safe-area-inset-right);
}
Compare with other iPad models
| Device | CSS viewport | Native | DPR | PPI | Diagonal |
|---|---|---|---|---|---|
| iPad mini (6th gen) | 744 × 1133 | 1488 × 2266 | 2× | 326 | 8.3″ |
| iPad (9th gen) | 810 × 1080 | 1620 × 2160 | 2× | 264 | 10.2″ |
| iPad Pro 11″ (3rd gen) | 834 × 1194 | 1668 × 2388 | 2× | 264 | 11″ |
| iPad Pro 12.9″ (5th) | 1024 × 1366 | 2048 × 2732 | 2× | 264 | 12.9″ |
| iPad (8th gen) | 810 × 1080 | 1620 × 2160 | 2× | 264 | 10.2″ |
| iPad (10th gen) | 820 × 1180 | 1640 × 2360 | 2× | 264 | 10.9″ |
| iPad Air (5th gen) | 820 × 1180 | 1640 × 2360 | 2× | 264 | 10.9″ |
| iPad Air (4th gen) | 820 × 1180 | 1640 × 2360 | 2× | 264 | 10.9″ |
| iPad Pro 11″ (4th gen) | 834 × 1194 | 1668 × 2388 | 2× | 264 | 11″ |
Questions about the iPad mini (6th gen) screen
What is the screen size of the iPad mini (6th gen)?
The iPad mini (6th gen) has a 8.3-inch display. In CSS the viewport measures 744 × 1133 px in portrait, and the panel itself has 1488 × 2266 physical pixels at 326 PPI.
What resolution should I design for on the iPad mini (6th gen)?
Design at 744 × 1133 and export assets at 2×. That gives you 1488 × 2266 px images, which is exactly what the panel renders. Designing directly at 1488 × 2266 means every measurement is 2 times larger than the CSS values you will write.
What is the device pixel ratio of the iPad mini (6th gen)?
The iPad mini (6th gen) reports a device pixel ratio of 2. One CSS pixel therefore covers 4 device pixels. You can read it in JavaScript with window.devicePixelRatio.
What are the safe area insets on the iPad mini (6th gen)?
In portrait the safe area inset is 24 px at the top and 20 px at the bottom (iPad mini, home indicator). Use env(safe-area-inset-*) rather than hard-coding these — the values change per device and per orientation.
Which other devices have the same viewport as the iPad mini (6th gen)?
1 other device shares the 744 × 1133 CSS viewport: iPad mini (7th gen). A layout that works on one works on all of them.
Related
window.innerWidth/innerHeight reported by the stock browser with no browser chrome. See methodology and sources.