Microsoft · tablet · 2024
Surface Pro 10 screen size
Business-oriented successor to the Surface Pro 9 keeping the 13-inch 3:2 PixelSense Flow panel: 2880x1920 at 267 PPI and 120Hz, with 200% scaling producing a 1440x960 landscape CSS viewport. A staple of enterprise 2-in-1 deployments, it is the canonical device for verifying that desktop layouts remain touch-friendly at tablet breakpoints.
- CSS viewport
- 1440 × 960
- Physical pixels
- 2880 × 1920
- Pixel ratio
- 2x
- PPI
- 267
- Screen size
- 13"
Media queries
Target this device (portrait)
@media only screen and (device-width: 1440px) and (device-height: 960px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
/* styles */
}Viewport width and up
@media (min-width: 1440px) {
/* styles */
}Viewport width and down
@media (max-width: 1440px) {
/* styles */
}