Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what is the smallest screen resolution that I should care when building a website? [closed]

So what's the lowest screen resolution, especially width, that I should consider when building a website.

like image 599
phoxd Avatar asked Jun 08 '12 05:06

phoxd


People also ask

What is the smallest screen size for web design?

Short answer: 320px. If you want the most remarkable outcomes, you need to measure your audience and consider how much effort you want to make your site/app work for the 0.1 percent of people below your screen-width threshold.

What is the smallest screen resolution?

For example, the smallest cellphone screen size in active use is currently the iPhone 5, which comes in at 320 pixels wide.

What is the minimum screen size?

The source doesn't say anything about 320px though. @Muz it's been likely updated since then, but in my experience, 320px still holds the ground as a good minimum threshold for low-end phones.

What is the smallest width display?

Smallest width qualifier Here's how other smallest width values correspond to typical screen sizes: 320dp: Typical phone screen (240x320 ldpi, 320x480 mdpi, 480x800 hdpi, etc.) 480dp: Large phone screen ~5" (480x800 mdpi) 600dp: 7” tablet (600x1024 mdpi)


3 Answers

Here is the link which show browser resolution statistics and trends yearwise -

Browser Display Statistics

It shows that as of 2012 -

Date   Higher     1024x768 800x600    640x480    Other
2012   85%        13%      1%         0%         1%
like image 172
Kshitij Avatar answered Sep 17 '22 19:09

Kshitij


Mobile devices with 320×480 or 480×800, I guess. But they should get a completely different layout on most sites.

Normal monitors should have at least 1024×768 nowadays, unless you want people visiting your site directly after installing Windows without video drivers yet ;)

like image 36
Joey Avatar answered Sep 18 '22 19:09

Joey


Add this in header section. This automatically fit

<meta name="viewport" content="width=device-width, initial-scale=1" />
like image 24
ebattulga Avatar answered Sep 19 '22 19:09

ebattulga