Generic · laptop · 2020
Generic 768p laptop screen size
The budget laptop class: a 15.6-inch 1366x768 TN or entry IPS panel at 100% scaling. For years this was the single most common desktop resolution on the web, and it still accounts for a meaningful share of traffic in education and emerging markets. Test it to guarantee your layout survives only 768 CSS pixels of height minus browser chrome.
- CSS viewport
- 1366 × 768
- Physical pixels
- 1366 × 768
- Pixel ratio
- 1x
- PPI
- 100
- Screen size
- 15.6"
Media queries
Target this device (portrait)
@media only screen and (device-width: 1366px) and (device-height: 768px) and (-webkit-device-pixel-ratio: 1) and (orientation: portrait) {
/* styles */
}Viewport width and up
@media (min-width: 1366px) {
/* styles */
}Viewport width and down
@media (max-width: 1366px) {
/* styles */
}