When setting the size of fonts in CSS, should I be using a percent value or em? Can you explain the advantage?
|
There's a really good article on web typography on A List Apart. Their conclusion:
|
|||||
|
|
From http://archivist.incutio.com/viewlist/css-discuss/1408
|
|||||||
|
|
Typically, I set a base font size on the body in pixels and then use em from there. There's definitely a readability factor to em as well as an expectation, I think, amongst many designers/developers to work with ems. I've found that both print and web people understand em as a relative unit of measure but using % takes a more conscious mental conversion. |
|||
|
|
|
As Galwegian mentions, px is the most reliable for web typography, as everything else you do on the page is mostly laid out in reference to a computer monitor. The problem with absolute sizes is that some browsers (IE) won't scale pixel-value elements on a web-page, so when you try to zoom in/out, everything adjusts except for those elements. I do not know whether IE8 handles this properly, but all other browser vendors handle pixels just fine and it is still a minority case where a user needs to enlarge/diminish text (this text box on SO perhaps being the exception). If you want to get really dirty, you could always add a javascript function for making your text size larger and offer a "small"/"larger" button to the user. |
|||||
|
|
Given that (nearly?) all browsers now resize the page as a whole, rather than just the text, previous issues with px vs. % vs. ems in terms of accessible font resizing are rather moot. So, the answer is that it probably doesn't matter. Use whatever works for you. % is nice because it allows for relative resizing. PX is nice because it's fairly easy to manage expectations when using it. EM can be useful when also used for layout elements as it can allow for proportional sizing related to the text size. |
|||
|
|
|
Both adjust the font-size relative to what it was. 1.5em is the same as 150%. The only advantage seems to be readability, choose whichever you are most comfortable with. |
|||||
|
|
Yahoo User Interface library (http://developer.yahoo.com/yui/) has a nice set of base css classes used to "reset" the browser specific settings so that the basis for displaying the site is same for all (supported) browsers. With YUI one is supposed to use percentages. |
|||
|
|
Also a very useful link regarding this: http://www.w3schools.com/css/css_font.asp |
|||
|
|
|
Regarding the difference between the css units "%" and "em". As far as I understand (at least theoretically/conceptually, but possibly not how these two units might be implemented in browsers) these two units are equivalent, i.e. if you multiply your em value with 100 and then replace "em" with "%" it should be the same thing ? If there actually is some real difference between em and % then can someone explain it (or provide a link to an explanation) ? (I wanted to add this comment of mine where it would belong, i.e. indented just below the answer by "Liam, answered Sep 25 '08 at 11:21" since I also want to know why his answer was downvoted, but I could not figure out how to put my comment there and therefore had to write this "thread global" reply) |
|||
|
|