Google · tablet · 2023
Pixel Tablet screen size
Google's 2023 return to tablets, sold with a speaker dock for hub duty. In portrait it reports 800x1280 CSS pixels at an even 2x ratio, landing squarely in the md/lg breakpoint gap where phone and desktop layouts collide — a great test for tablet-tier designs.
- CSS viewport
- 800 × 1280
- Physical pixels
- 1600 × 2560
- Pixel ratio
- 2x
- PPI
- 276
- Screen size
- 10.95"
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 */
}