Apple · laptop · 2023
MacBook Pro 16-inch (M3) screen size
Apple's largest laptop, updated October 2023 with M3 Pro/Max and a 16.2-inch Liquid Retina XDR mini-LED display. Its 1728x1117 default viewport is a generous desktop canvas just shy of 1920px full HD logical width, good for verifying max-width containers and wide dashboard layouts.
- CSS viewport
- 1728 × 1117
- Physical pixels
- 3456 × 2234
- Pixel ratio
- 2x
- PPI
- 254
- Screen size
- 16.2"
Ports
- magsafe 3
- 3× thunderbolt 4 — USB-C connector
- hdmi
- sd card — SDXC
- headphone jack
Source: support.apple.com
Media queries
Target this device (portrait)
@media only screen and (device-width: 1728px) and (device-height: 1117px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
/* styles */
}Viewport width and up
@media (min-width: 1728px) {
/* styles */
}Viewport width and down
@media (max-width: 1728px) {
/* styles */
}