Skip to content
1440px

Nothing Phone (3) Screen Size

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

CSS viewport · portrait
384 × 854 px

Native resolution 1260 × 2800 px at 3.28× · 460 PPI · 6.67″ · 9:20. Design at 384 × 854 and export assets at 3.28×.

Nothing Phone (3) display specifications
PropertyValue
CSS viewport (portrait)384 × 854 px
CSS viewport (landscape)854 × 384 px
Native resolution1260 × 2800 px
Device pixel ratio3.28×
Pixel density460 PPI
Screen diagonal6.67 in
Panel size2.74 × 6.09 in
Aspect ratio9:20
Total pixels3.53 MP
Released2025
Operating systemAndroid

Among the 130 phones on this site, the Nothing Phone (3) has the 74th largest CSS viewport area. Its 384 px width is 15 px below the 399 px average for this category.

Targeting the Nothing Phone (3) 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 (3) specifically */
@media only screen
  and (device-width: 384px)
  and (device-height: 854px)
  and (-webkit-device-pixel-ratio: 3.28) {
  /* … */
}

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

Compare with other Android Phones models

Nothing Phone (3) compared with nearby Android Phones models
DeviceCSS viewportNativeDPRPPIDiagonal
Nothing Phone (3)384 × 8541260 × 28003.28×4606.67″
Xiaomi Redmi Note 14 Pro394 × 8751220 × 27123.1×4466.67″
Samsung Galaxy S25 Edge384 × 8321440 × 31203.75×5136.7″
Samsung Galaxy S25+384 × 8321440 × 31203.75×5136.7″
Samsung Galaxy A56360 × 7801080 × 23403856.7″
Samsung Galaxy A36360 × 7801080 × 23403856.7″
Samsung Galaxy A26360 × 7801080 × 23403856.7″
Xiaomi 15 Ultra440 × 9791440 × 32003.27×5226.73″
Google Pixel 10 Pro XL448 × 9971344 × 29924866.8″

Questions about the Nothing Phone (3) screen

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

The Nothing Phone (3) has a 6.67-inch display. In CSS the viewport measures 384 × 854 px in portrait, and the panel itself has 1260 × 2800 physical pixels at 460 PPI.

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

Design at 384 × 854 and export assets at 3.28×. That gives you 1260 × 2800 px images, which is exactly what the panel renders. Designing directly at 1260 × 2800 means every measurement is 3.28 times larger than the CSS values you will write.

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

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

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

1 other device shares the 384 × 854 CSS viewport: Samsung Galaxy S21+. 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.