Notch and safe areas
On Apple iPhone 14 PRO, the notch and gesture bar reserve part of the screen. Without the env(safe-area-inset-*) variables, your fixed headers and bottom-stuck buttons go under these areas and become unusable.
Apple · iOS 16.0 · Smartphone · 2022
All display characteristics of Apple iPhone 14 PRO, smartphone Apple from 2022: CSS viewport of 390 x 844 pixels, 3x density, media queries, and one-click responsive test.
Test your site on Apple iPhone 14 PRO directly in your browser, without buying the device.
4.9/5 based on 5,100 reviews · 1,000,000 users · free
On Apple iPhone 14 PRO, the notch and gesture bar reserve part of the screen. Without the env(safe-area-inset-*) variables, your fixed headers and bottom-stuck buttons go under these areas and become unusable.
Each CSS pixel of Apple iPhone 14 PRO is rendered by 3 physical pixels. Any image, icon, or font provided in simple resolution appears immediately blurry.
With a ratio of 19.5:9, Apple iPhone 14 PRO displays a lot of height for little width. Sections designed in landscape become endless columns, and full-screen visuals are poorly cropped.
This is the resolution that interests designers and developers the most, as it determines breakpoints and the definition of media queries. In practice, it's the only one mentioned in a stylesheet.
The height remains indicative: Safari, Chrome, and other mobile browsers reduce the visible area with their address bar, which folds on scroll.
Be cautious when analyzing your statistics: some tools only report the manufacturer resolution, never the CSS viewport presented here.
3
The device pixel ratio of Apple iPhone 14 PRO is 3.
In other words, a 1-pixel square in CSS occupies 3 pixels on the panel. An image exported at actual size will appear blurry.
This resolution is the hardware's. It explains the display's sharpness, but it's never the one to target in a media query.
461 pixels per inch (ppi) · 6.1 inches diagonal, or 15.5 cm
This string is what the browser of Apple iPhone 14 PRO sends. It is useful for your automated tests, reading your server logs, and server-side detection.
User-Agent string used by Apple iPhone 14 PRO, useful for your automated tests and logs.
Mozilla/5.0 (iPhone; CPU iPhone OS 16_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.0 Mobile/15E148 Safari/604.1On Apple iPhone 14 PRO, part of the screen is reserved for the notch and gesture bar. Without precaution, a fixed header goes under the notch, and a bottom-stuck button becomes impossible to touch.
Two conditions to remedy this: declare viewport-fit=cover in the meta viewport tag, then use the env(safe-area-inset-*) variables in your padding.
Protects your fixed elements from the notch and gesture bar of Apple iPhone 14 PRO.
.header {
padding-top: env(safe-area-inset-top);
}
.bottom-bar {
padding-bottom: env(safe-area-inset-bottom);
}These snippets are generated from the exact characteristics of Apple iPhone 14 PRO. Copy them directly into your stylesheet or configuration.
Targets screens whose width matches that of Apple iPhone 14 PRO and models of the same format.
@media only screen and (min-width: 390px) and (max-width: 843px) {
/* Apple iPhone 14 PRO */
}Serves high-resolution images to screens of at least 3x.
@media only screen and (-webkit-min-device-pixel-ratio: 3),
only screen and (min-resolution: 288dpi) {
/* High-density images and icons */
}Adds a named breakpoint at the exact width of Apple iPhone 14 PRO.
// tailwind.config.js
module.exports = {
theme: {
screens: {
'apple-iphone-14-pro-2022': '390px'
}
}
}Detects format and density client-side.
const isDeviceWidth = window.matchMedia('(min-width: 390px)').matches;
const isHighDensity = window.devicePixelRatio >= 3;Essential for Apple iPhone 14 PRO to use its CSS viewport and not a simulated width of 980 pixels.
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">Mobile FIRST includes Apple iPhone 14 PRO: your page displays in a viewport of 390 x 844 pixels, with the model's User-Agent, touch events, and scrolling behavior of a real mobile.
This is where the difference with Chrome DevTools' responsive mode is seen: DevTools resizes a window, the extension replicates the device's browser and allows exporting shareable screenshots and videos.
These 5 devices share exactly the viewport of 390 x 844 pixels and the 3x density of Apple iPhone 14 PRO. Their CSS rendering is therefore exactly the same: what you validate on one is valid on all others.
The neighboring formats of Apple iPhone 14 PRO are the ones to test right after, as they reveal poorly placed breakpoints.
| Model | CSS Viewport | Pixel density | Manufacturer resolution |
|---|---|---|---|
| Apple iPhone 14 PRO | 390 x 844 | 3x | 1179 x 2556 |
| Samsung Galaxy S22 | 360 x 780 | 3x | 1080 x 2340 |
| Xiaomi 12 2022 | 360 x 800 | 3x | 1080 x 2400 |
| Samsung Galaxy Z Flip3 | 360 x 880 | 3x | 1080 x 2640 |
| Apple iPhone 14 | 390 x 844 | 3x | 1170 x 2532 |
| Apple iPhone 13 | 390 x 844 | 3x | 1170 x 2532 |
| Apple iPhone 13 PRO | 390 x 844 | 3x | 1170 x 2532 |
The CSS viewport of Apple iPhone 14 PRO measures 390 pixels wide and 844 pixels high. This is the width to use for defining your media queries, not the manufacturer's resolution.
The device pixel ratio of Apple iPhone 14 PRO is 3. Each CSS pixel is thus displayed by 3 physical pixels, requiring you to provide your images in 3x to keep them sharp.
The panel of Apple iPhone 14 PRO displays 1179 x 2556 physical pixels. This is the value reported by most analytics tools, while your CSS works on a viewport of 390 x 844 pixels.
The User-Agent of Apple iPhone 14 PRO is: Mozilla/5.0 (iPhone; CPU iPhone OS 16_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.0 Mobile/15E148 Safari/604.1
5 other models share exactly the viewport of 390 x 844 pixels and the 3x density of Apple iPhone 14 PRO: Apple iPhone 12, Apple iPhone 12 Pro, Apple iPhone 13, Apple iPhone 13 PRO, Apple iPhone 14. A rendering validated on one is valid on all others.
Install the Mobile FIRST extension on Chrome, Firefox, or Edge, then select Apple iPhone 14 PRO. Your page displays in a viewport of 390 x 844 pixels with the corresponding mobile User-Agent, in two clicks and for free.
DevTools resizes the window and applies partial emulation. Mobile FIRST additionally applies the User-Agent of Apple iPhone 14 PRO, touch events, scroll behavior, and the actual appearance of the device, and allows capturing directly usable images and videos.
Yes. The extension works on any URL open in your browser, including localhost:3000, 127.0.0.1, or a password-protected pre-production environment.
No. The simulation covers the vast majority of development needs at no cost. A final test on a real device is still recommended before critical production deployment, but it's no longer necessary for each iteration.
A media query on the exact width targets Apple iPhone 14 PRO: @media only screen and (min-width: 390px). Combine it with the pixel density to precisely target this model and those sharing its format.
Without buying a single phone, without creating an account.
Free installation in seconds · computer only