Microsoft · tablet · 2022
Surface Pro 9 screen size
Microsoft's flagship 2-in-1 tablet with a 13-inch 3:2 PixelSense Flow display (2880x1920, up to 120Hz) at 200% default scaling, giving a clean 1440x960 CSS viewport in landscape. It is the reference Windows tablet class: designers test it because it straddles tablet and laptop breakpoints, and touch plus type-cover use both matter.
- 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 */
}