Skip to content
1440px

Samsung Galaxy Note 20 Ultra Screen Size

CSS viewport, native resolution, pixel ratio and pixel density for the Samsung Galaxy Note 20 Ultra — the numbers you need to design and build for it.

CSS viewport · portrait
412 × 883 px

Native resolution 1440 × 3088 px at 3.5× · 496 PPI · 6.9″ · 1:2.14. Design at 412 × 883 and export assets at 3.5×.

Samsung Galaxy Note 20 Ultra display specifications
PropertyValue
CSS viewport (portrait)412 × 883 px
CSS viewport (landscape)883 × 412 px
Native resolution1440 × 3088 px
Device pixel ratio3.5×
Pixel density496 PPI
Screen diagonal6.9 in
Panel size2.9 × 6.23 in
Aspect ratio1:2.14 (exact 90:193)
Total pixels4.45 MP
Released2020
Operating systemAndroid

Among the 130 phones on this site, the Samsung Galaxy Note 20 Ultra has the 49th largest CSS viewport area. Its 412 px width is 13 px above the 399 px average for this category.

Targeting the Samsung Galaxy Note 20 Ultra 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 Samsung Galaxy Note 20 Ultra specifically */
@media only screen
  and (device-width: 412px)
  and (device-height: 883px)
  and (-webkit-device-pixel-ratio: 3.5) {
  /* … */
}

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

Compare with other Android Phones models

Samsung Galaxy Note 20 Ultra compared with nearby Android Phones models
DeviceCSS viewportNativeDPRPPIDiagonal
Samsung Galaxy Note 20 Ultra412 × 8831440 × 30883.5×4966.9″
Samsung Galaxy S20 Ultra412 × 9141440 × 32003.5×5116.9″
Samsung Galaxy S20360 × 8001440 × 32005636.2″
Google Pixel 5393 × 8511080 × 23402.75×4326″
Google Pixel 4a393 × 8511080 × 23402.75×4435.81″
Samsung Galaxy S21 Ultra480 × 10671440 × 32005156.8″
Samsung Galaxy S21+384 × 8541080 × 24002.81×3946.7″
Google Pixel 6 Pro412 × 8921440 × 31203.5×5126.7″
Samsung Galaxy A52360 × 8001080 × 24004056.5″

Questions about the Samsung Galaxy Note 20 Ultra screen

What is the screen size of the Samsung Galaxy Note 20 Ultra?

The Samsung Galaxy Note 20 Ultra has a 6.9-inch display. In CSS the viewport measures 412 × 883 px in portrait, and the panel itself has 1440 × 3088 physical pixels at 496 PPI.

What resolution should I design for on the Samsung Galaxy Note 20 Ultra?

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

What is the device pixel ratio of the Samsung Galaxy Note 20 Ultra?

The Samsung Galaxy Note 20 Ultra reports a device pixel ratio of 3.5. One CSS pixel therefore covers 12.25 device pixels. You can read it in JavaScript with window.devicePixelRatio.

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.