375 × 667
Aspect Ratio
375:667
Pixel Density
326 PPI
iPhone SE 3rd Gen Viewport
The iPhone SE 3rd Gen has a logical CSS viewport size of 375px width and 667px 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) | 375px |
|---|---|
| Logical Height (CSS) | 667px |
| Operating System | iOS |
| Release Year | 2022 |
CSS Media Query Snippet
/* Target iPhone SE 3rd Gen specifically */
@media only screen and (max-width: 375px) {
/* Responsive styles go here */
}
Frequently Asked Questions
What is the CSS resolution of iPhone SE 3rd Gen?
The logical CSS resolution is 375px x 667px. Browsers use these dimensions to calculate layout flow and media queries, regardless of the physical pixel count.
How do I target iPhone SE 3rd Gen in CSS?
Use a standard media query like @media (max-width: 375px) to apply specific styles for screens of this size or smaller.