We currently have a reset that says, body { font-size: 75%; } which translates to 12px if the standard size is 16px. I'm trying to figure out why wouldn't I just say body { font-size: 12px; } THanks!~
Asked
Active
Viewed 61 times
1 Answers
0
It is completely preference. You can read about all the benefits and disadvantages here > CSS Font-Size: em vs. px vs. pt vs. percent. (first link in google search)
In theory, the em unit is the new and upcoming standard for font sizes on the web, but in practice, the percent unit seems to provide a more consistent and accessible display for users. When client settings have changed, percent text scales at a reasonable rate, allowing designers to preserve readability, accessibility, and visual design.
also, check out this

starvator
- 989
- 1
- 11
- 26
-
1pt is for print. Do not use pt for the web. http://www.w3.org/Style/Examples/007/units.en.html#units – Rob Oct 03 '14 at 15:49
-