views:

47

answers:

3

They appear to assume that "web designers assume a fixed 72DPI" (or something specific anyway). But desktop DPI usually depends on screen physical size.

When I visited this site, I noticed its fonts look tiny compared to other browsers.

After some quick research, I stumbled into Development advisories from Google Chrome that pin point to that issue: they assume DPI is a constant quantity. Is it effectively a bug?

--

This thread appears to be rich on the subject: from google.com

A: 

That site's fonts are small because they have font-size: 70%; and later font-size: 85%;. So now it's down to 69.5% of the original size. The badly written CSS is to blame, not Chrome.

If it bothers you that much, press ctrl+.

Coronatus
What should they do to fix it without breaking it for other browsers?
Lela Dax
Write font sizes in pixels, not percentages.
Coronatus
Wow. I read everywhere ems and percentages should be used instead of pixel sizes... Now I'm really confused.
Brainfeeder
So, Chrome is to blame?
Lela Dax
No, the site is to blame. And use pixels, not percentages.
Coronatus
That doesn't answer the previous person's remark, that he learned to do it the opposite way.
Lela Dax
Well, how do you expect me to answer it...? There wasn't a question, and I replied with a correction.
Coronatus
A: 

The fonts look the same to me in Chrome and Firefox / Safari / IE

Moin Zaman
+1  A: 

Chrome definitely has some display bugs. Many times, HTML checkboxes become invisible (simplest test using gmail). On zooming in/out, they SOMETIMES come back into view. (never faced this issue in IE/FF).

JP19