Skip to content
1440px

Samsung Galaxy S21+ Screen Size

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

CSS viewport · portrait
384 × 854 px

Native resolution 1080 × 2400 px at 2.81× · 394 PPI · 6.7″ · 9:20. Design at 384 × 854 and export assets at 2.81×.

Samsung Galaxy S21+ display specifications
PropertyValue
CSS viewport (portrait)384 × 854 px
CSS viewport (landscape)854 × 384 px
Native resolution1080 × 2400 px
Device pixel ratio2.81×
Pixel density394 PPI
Screen diagonal6.7 in
Panel size2.74 × 6.09 in
Aspect ratio9:20
Total pixels2.59 MP
Released2021
Operating systemAndroid

Among the 130 phones on this site, the Samsung Galaxy S21+ has the 75th largest CSS viewport area. Its 384 px width is 15 px below the 399 px average for this category.

Targeting the Samsung Galaxy S21+ 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 S21+ specifically */
@media only screen
  and (device-width: 384px)
  and (device-height: 854px)
  and (-webkit-device-pixel-ratio: 2.81) {
  /* … */
}

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

Compare with other Android Phones models

Samsung Galaxy S21+ compared with nearby Android Phones models
DeviceCSS viewportNativeDPRPPIDiagonal
Samsung Galaxy S21+384 × 8541080 × 24002.81×3946.7″
Google Pixel 6 Pro412 × 8921440 × 31203.5×5126.7″
Samsung Galaxy S21 Ultra480 × 10671440 × 32005156.8″
Samsung Galaxy A52360 × 8001080 × 24004056.5″
Google Pixel 6412 × 9151080 × 24002.625×4116.4″
Samsung Galaxy S21360 × 8001080 × 24004216.2″
Google Pixel 7 Pro412 × 8921440 × 31203.5×5126.7″
Samsung Galaxy S22 Ultra480 × 10291440 × 30885006.8″
Samsung Galaxy S22+384 × 8331080 × 23402.81×3906.6″

Questions about the Samsung Galaxy S21+ screen

What is the screen size of the Samsung Galaxy S21+?

The Samsung Galaxy S21+ has a 6.7-inch display. In CSS the viewport measures 384 × 854 px in portrait, and the panel itself has 1080 × 2400 physical pixels at 394 PPI.

What resolution should I design for on the Samsung Galaxy S21+?

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

What is the device pixel ratio of the Samsung Galaxy S21+?

The Samsung Galaxy S21+ reports a device pixel ratio of 2.81. One CSS pixel therefore covers 7.9 device pixels. You can read it in JavaScript with window.devicePixelRatio.

Which other devices have the same viewport as the Samsung Galaxy S21+?

1 other device shares the 384 × 854 CSS viewport: Nothing Phone (3). 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.