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?
