Skip to content
1440px

Samsung Galaxy S25+ Screen Size

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

CSS viewport · portrait
384 × 832 px

Native resolution 1440 × 3120 px at 3.75× · 513 PPI · 6.7″ · 9:19.5. Design at 384 × 832 and export assets at 3.75×.

Samsung Galaxy S25+ display specifications
PropertyValue
CSS viewport (portrait)384 × 832 px
CSS viewport (landscape)832 × 384 px
Native resolution1440 × 3120 px
Device pixel ratio3.75×
Pixel density513 PPI
Screen diagonal6.7 in
Panel size2.81 × 6.08 in
Aspect ratio9:19.5
Total pixels4.49 MP
Released2025
Operating systemAndroid

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

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

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

Compare with other Android Phones models

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

Questions about the Samsung Galaxy S25+ screen

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

The Samsung Galaxy S25+ has a 6.7-inch display. In CSS the viewport measures 384 × 832 px in portrait, and the panel itself has 1440 × 3120 physical pixels at 513 PPI.

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

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

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

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

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

2 other devices share the 384 × 832 CSS viewport: Samsung Galaxy S25 Edge, Samsung Galaxy S24+. 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.