iPhone 14
iPhone 14 is a phone powered by iOS OS and
released
by Apple on September 16, 2022.

Get the Blisk app to test the cross-browser compatibility and responsive design on iPhone 14. This phone is ready to use standalone or simultaneously with lots of other popular devices.

Viewport Size:
390px × 844px
Screen Size:
1170px × 2532px
Device Pixel Ratio:
3
Overview and Dimensions
iPhone 14 was released by Apple on September 16, 2022 and is powered by iOS OS. By default, the device is shipped with a web browser — Safari for iOS. Device dimensions are 71.5 × 146.7 × 7.8 millimeters (2.81 × 5.78 × 0.31 inches) 1. The device weighs 172 g.
iPhone 14 has a large-sized Super Retina XDR OLED display with a 6.1-inch screen (90.2 cm2, 19.5:9 aspect ratio), and an approximate 86% screen-to-body ratio. The display is a touch screen, meaning that it supports touch events - interactions using a finger or stylus.
Screen size, Viewport, CSS Pixel Ratio
iPhone 14 has a 6.1-inch screen with a screen size (resolution): 1170px × 2532px, 390px × 844px viewport1, and a CSS Pixel Ratio of 3.
Viewport or Viewport size is the number of software pixels (CSS pixels) present on a screen. Usually, viewport size displays as viewport width in pixels to viewport height in pixels.
Device Pixel Ratio (DPR) or CSS Pixel Ratio is the ratio between the physical pixels (screen size or resolution) and CSS pixels (viewport). Depending on device specification, one CSS pixel can equal one or mode physical pixels. Modern devices have screens with high pixel density resulting in the difference between screen size (resolution) and viewport.
Viewport size = Screen Size (Resolution) / Device Pixel Ratio.
CSS Pixel Ratio = Screen Size (Resolution) / Viewport size.
Key points for development and testing on iPhone 14
Before you start web development or testing, check that the web application supports a responsive viewport by using a viewport meta tag:
<meta name="viewport" content="width=device-width">
.
You can inspect this tag in the head section of an HTML document on iPhone 14 right in the Blisk app. If this viewport tag is missing, the web application will not be responsive and will overflow the screen, hiding the content from users and leading to a bad user experience.
The form factor of the device represents its primary orientation as a portrait. Landscape orientation is popular on iPhone 14 as well and should be seriously considered when you develop or test web applications on any mobile.
You also need to consider that the users will manipulate your web application on iPhone 14 with a finger and stylus because this device has a touch screen that supports touch events. It is important to remember, that users may interact with multiple fingers (multi-touch) and gestures: single tap, multi-tap, swipe, pinch, stretch, zoom, etc. The users are highly likely to use gestures on small touch screens because of seamless interaction and great user experience.
CSS Media Query
Use the CSS Media Queries below to apply custom CSS properties for iPhone 14 and devices with the same screens:
iPhone 14 Media Query for min-width:
@media only screen and (min-width: 390px)
{ /* Your Styles... */ }
iPhone 14 Media Query for min-height:
@media only screen and (min-height: 844px)
{ /* Your Styles... */ }
iPhone 14 Media Query for landscape orientation:
@media only screen and (min-width: 390px) and (orientation: landscape)
{ /* Your Styles... */ }
iPhone 14 Media Query for portrait orientation:
@media only screen and (min-width: 844px) and (orientation: portrait)
{ /* Your Styles... */ }
iPhone 14 Media Query for device pixel ratio:
@media only screen and (-webkit-min-device-pixel-ratio: 3),
only screen and (min--moz-device-pixel-ratio: 3),
only screen and (-o-min-device-pixel-ratio: 3/1),
only screen and (min-device-pixel-ratio: 3)
{ /* Your Styles here */ }
Launch iPhone 14 in Blisk
iPhone 14 is ready to use in the Blisk app, where you can develop web applications and test cross-browser compatibility, use this phone as a standalone device or simultaneously with other devices. Learn more...
- Download the latest version.
- Launch the Developer Mode from the Toolbar (screenshot below).
- Click Device Manager (screenshot below).
- Select iPhone 14 from the list.
- Click Launch Devices.
Launch iPhone 14 from Command prompt or Terminal
You can launch iPhone 14 in the Blisk app from Command prompt (Windows) or Terminal (macOS or Linux) to develop web applications and test cross-browser compatibility on a standalone device or simultaneously with other devices. Learn more...
- Download the latest version.
- Launch the Developer Mode from the Toolbar.
- Click Menu: Device Set ➜ Share Set.
- Select Command and click Next.
- Select iPhone 14 from the list and click Next.
- Copy the generated command.
- Launch Command prompt or Terminal, paste the command, and execute it.
Summary on iPhone 14
Release Date | Sep 16, 2022 |
Vendor | Apple |
Device Type | Phone |
Operating System | iOS |
Display | Super Retina XDR OLED, 90.2 cm2, 19.5:9, ~86% screen-to-body ratio |
Screen Size (Resolution) Width | 1170px |
Screen Size (Resolution) Height | 2532px |
Viewport Width | 390px |
Viewport Height | 844px |
CSS Pixel Ratio | 3 |
Display Size | 6.1-inch |
Pixels Per Inch | 460 PPI |
Dimensions (mm) | 71.5 mm × 146.7 mm × 7.8 mm |
Dimensions (inch) | 2.81 inch × 5.78 inch × 0.31 inch |
Device Weight | 172 g |