Samsung · tablet · 2023
Galaxy Tab S9 screen size
Samsung's 2023 flagship 11-inch tablet moved the whole line to AMOLED with S Pen included. Portrait it reports 800x1280 at an even 2x — the classic tablet viewport that lands between md and lg breakpoints in most CSS frameworks.
- CSS viewport
- 800 × 1280
- Physical pixels
- 1600 × 2560
- Pixel ratio
- 2x
- PPI
- 274
- Screen size
- 11"
Ports
- usb c
- microsd — Expandable storage
Source: samsung.com
Media queries
Target this device (portrait)
@media only screen and (device-width: 800px) and (device-height: 1280px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
/* styles */
}Viewport width and up
@media (min-width: 800px) {
/* styles */
}Viewport width and down
@media (max-width: 800px) {
/* styles */
}