Skip to content
1440px

Nothing Phone (2) Screen Size

CSS viewport, native resolution, pixel ratio and pixel density for the Nothing Phone (2) — the numbers you need to design and build for it.

CSS viewport · portrait
412 × 919 px

Native resolution 1080 × 2412 px at 2.625× · 394 PPI · 6.7″ · 9:20. Design at 412 × 919 and export assets at 2.625×.

Nothing Phone (2) display specifications
PropertyValue
CSS viewport (portrait)412 × 919 px
CSS viewport (landscape)919 × 412 px
Native resolution1080 × 2412 px
Device pixel ratio2.625×
Pixel density394 PPI
Screen diagonal6.7 in
Panel size2.74 × 6.12 in
Aspect ratio9:20
Total pixels2.6 MP
Released2023
Operating systemAndroid

Among the 130 phones on this site, the Nothing Phone (2) has the 31th largest CSS viewport area. Its 412 px width is 13 px above the 399 px average for this category.

Targeting the Nothing Phone (2) 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.

CSS media query
/* Target Nothing Phone (2) specifically */
@media only screen
  and (device-width: 412px)
  and (device-height: 919px)
  and (-webkit-device-pixel-ratio: 2.625) {
  /* … */
}

/* More useful in practice — the width bucket it falls into */
@media (min-width: 412px) { /* … */ }

Compare with other Android Phones models

Nothing Phone (2) compared with nearby Android Phones models
DeviceCSS viewportNativeDPRPPIDiagonal
Nothing Phone (2)412 × 9191080 × 24122.625×3946.7″
Google Pixel 8 Pro448 × 9971344 × 29924896.7″
Samsung Galaxy Z Flip 5360 × 8801080 × 26404256.7″
OnePlus 11412 × 9191440 × 32163.5×5256.7″
Xiaomi 13 Pro440 × 9791440 × 32003.27×5226.73″
Xiaomi Redmi Note 12393 × 8731080 × 24002.75×3956.67″
Xiaomi Redmi 13C360 × 800720 × 16002606.74″
Samsung Galaxy S23 Ultra480 × 10291440 × 30885006.8″
Samsung Galaxy S23+384 × 8331080 × 23402.81×3906.6″

Questions about the Nothing Phone (2) screen

What is the screen size of the Nothing Phone (2)?

The Nothing Phone (2) has a 6.7-inch display. In CSS the viewport measures 412 × 919 px in portrait, and the panel itself has 1080 × 2412 physical pixels at 394 PPI.

What resolution should I design for on the Nothing Phone (2)?

Design at 412 × 919 and export assets at 2.625×. That gives you 1080 × 2412 px images, which is exactly what the panel renders. Designing directly at 1080 × 2412 means every measurement is 2.625 times larger than the CSS values you will write.

What is the device pixel ratio of the Nothing Phone (2)?

The Nothing Phone (2) reports a device pixel ratio of 2.625. One CSS pixel therefore covers 6.89 device pixels. You can read it in JavaScript with window.devicePixelRatio.

Which other devices have the same viewport as the Nothing Phone (2)?

2 other devices share the 412 × 919 CSS viewport: OnePlus 11, Motorola Edge 50 Pro. A layout that works on one works on all of them.

Related

Specifications from the manufacturer's published device data. Last verified 7 August 2026. CSS viewport values are the portrait window.innerWidth/innerHeight reported by the stock browser with no browser chrome. See methodology and sources.