Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Following these articles:

CSS font-size: em vs. px vs. pt vs. percent

16 Pixels For Body Copy. Anything Less Is A Costly Mistake

I'm about to use the base size of:

body {
    font-size: 100%;
}

and use this as the base paragraph font size, resulting - on desktops - in 16px, unless the user changes his browser or system settings.


The site's layout is responsive and I'm concerned about how it's going to look on mobile devices too - including small smartphones and high-DPI displays.

If I just specify 100%, what will this result with on mobile devices? Can I expect the browsers to choose the optimal font size for the given screen size and DPI?

share|improve this question

1 Answer

From my experience, most modern smartphone browsers are pretty good at setting a suitable font size if you set it to 100% - but you can never be sure.

If it was me, I would add that extra layer of protection by manually setting a font size YOU like for smaller screen resolutions.

@media (max-width: 767px) {
  body {
    font-size:18px;
  }
}

Of coarse, you'll have to test it out on a mobile device to get that perfect font size you're looking for.

Adam.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.