All articles
Viewport reference

Most Common Screen Resolutions for Web Design

The screen resolutions and CSS viewport widths that actually matter in 2026, and how to turn them into a focused responsive test matrix.

6 min read - Updated 2026-06-15

Use this guide as a compact release reference, then validate the same breakpoints in Sizzy with synchronized devices and screenshot evidence.

Physical resolution is not CSS width

A phone advertised at 1170 pixels wide does not give you 1170 CSS pixels to work with. Device pixel ratio scales the physical resolution down to a logical CSS width - that 1170px phone is usually 390px in CSS. Designing against physical resolution is a common beginner mistake that leads to layouts that look wrong on real hardware.

Physical resolution is measured in hardware pixels

CSS width = physical width divided by device pixel ratio

A 390px CSS phone may have a 1170px physical screen

Always design and test against CSS widths, not spec-sheet pixels

The widths worth testing

Rather than memorizing every device, test one width per class. These cover the overwhelming majority of real traffic and catch nearly all layout issues. Pull your own analytics to confirm the exact desktop widths your audience uses, then add those as custom devices.

360-393px for the majority of phones

768px and 820px for tablets

1280px and 1440px for the most common laptops

1920px for large desktop monitors

Build a focused test matrix

A good matrix has one representative device per width class plus any product-specific widths from your analytics. In Sizzy you save this matrix as a project workspace, so every QA session opens the exact same devices in sync. That repeatability is what turns ad-hoc resizing into a reliable release check.

One phone, one tablet, two laptops, one large desktop

Add your top analytics widths as custom devices

Save the matrix per project so it reloads instantly

Capture screenshots at each width for the release record

Release checklist

Test CSS widths, not advertised hardware resolutions.

Cover one device per major width class.

Add the most common widths from your own analytics.

Save the matrix so QA is one click every release.

Frequently asked questions

What is the most common screen resolution in 2026?

1920x1080 remains the most common desktop physical resolution, while mobile traffic clusters around 360-393px CSS width. Always confirm with your own analytics, since audiences vary widely by product and region.

What screen size should I design for first?

Design for a ~390px CSS width phone first, since that covers most mobile traffic and forces content prioritization. Then expand the layout up to tablet and desktop widths using a mobile-first approach.

How do I find my audience's actual screen sizes?

Check the device and screen-resolution reports in your analytics platform. Use the top widths to define custom test devices so your QA matrix reflects real visitors rather than generic presets.

Related guides