414 × 896
Aspect Ratio
207:448
Pixel Density
326 PPI
iPhone 11 Viewport
The iPhone 11 has a logical CSS viewport size of 414px width and 896px height.
Web designers and developers should use these dimensions to set accurate media query breakpoints for responsive layouts.
This device features a pixel density of 326 PPI, utilizing a high-DPI scaling factor for sharp rendering on iOS.
Technical Specifications
| Logical Width (CSS) | 414px |
|---|---|
| Logical Height (CSS) | 896px |
| Operating System | iOS |
| Release Year | 2019 |
CSS Media Query Snippet
/* Target iPhone 11 specifically */
@media only screen and (max-width: 414px) {
/* Responsive styles go here */
}
Frequently Asked Questions
What is the CSS resolution of iPhone 11?
The logical CSS resolution is 414px x 896px. Browsers use these dimensions to calculate layout flow and media queries, regardless of the physical pixel count.
How do I target iPhone 11 in CSS?
Use a standard media query like @media (max-width: 414px) to apply specific styles for screens of this size or smaller.