I understand the advantages of using ems in favor of static measurements like pixels and points, but why do most of the CSS people out there (SO excepted) prefer using ems instead of % values?

Thanks!

link|improve this question

feedback

4 Answers

up vote 10 down vote accepted

For font sizes:

  • em and % are both relative to the font size of the parent element (i.e. 2em and 200% always give same result)
  • ems have a history in typography (although a CSS em is not the same as a typographic em)
  • Browser implementations of CSS have fewer bugs with % than with em

For everything else (e.g. the width of an element):

  • em is relative to the font size
  • % is relative to the parent element

… so they do completely different things and need to be considered on a case by case basis.

link|improve this answer
1  
+1: the definitive answer. – Skilldrick Feb 1 '10 at 13:30
1  
“Browser implementations of CSS have fewer bugs with % than with em” — Really? Have you got any examples of browser bugs with either? – Paul D. Waite Feb 1 '10 at 13:44
2  
@Paul - the biggest one is probably Internet Explorer (I can't say what versions off the top of my head) where, with font size specified in ems throughout, changing the font size using the view menu will resize by much more then expected (so "small" becomes "microscopic" and "large" becomes "gigantic". – Quentin Feb 1 '10 at 13:59
1  
@Alix - No. When setting font size, both units refer to the font size of the parent element. When setting other things, em refers to the font size of the element. – Quentin Feb 1 '10 at 13:59
2  
From the specification: The 'em' unit is equal to the computed value of the 'font-size' property of the element on which it is used. The exception is when 'em' occurs in the value of the 'font-size' property itself, in which case it refers to the font size of the parent element. – Quentin Feb 1 '10 at 14:01
show 9 more comments
feedback

Ems are based on a known and consistent value (the font-size) whereas percentage is based on the size of the container. It's much harder to design and understand CSS when the basis of your dimensions and sizes is changing depending on the context (which element/container you are in).

link|improve this answer
Thanks Nate, I'm still a little bit confused with the answers you and @David provided, if you could shed some more light on the subject I would really appreciate it. – Alix Axel Feb 1 '10 at 13:41
feedback

I would imagine that one reason is that a lot of web designers started out as print designers, and so are used to ems as a unit of measurement. That's certainly the case with me.

link|improve this answer
feedback

Give a page 3-column layout with 25%/50%/25%, give it font which allows for 6 lines of article (16% font-size), with 5 articles per page (20% height)

Now imagine it on an embedded device that has screen resolution of 320x200px

link|improve this answer
Sorry, but I don't follow... =S – Alix Axel Feb 1 '10 at 13:35
It doesn't make a whole lot of sense. That type of device generally won't be rendering a screen media stylesheet (unless it has a virtual view port and zoom facility, like Safari for iPhone). Font sizes defined in percentages are relative to the font size of the parent element, not box size of the viewport or the container. – Quentin Feb 1 '10 at 13:38
Sorry, but not once on I faced webpages that were completely unusable on a Netbook, simply becase the authors assumed "everyone is using big screens" and the page was either didn't fit on the screen while disabling scrolling, or scaled down to a size that made them unreadable. – SF. Feb 1 '10 at 13:54
I wasn't aware they made netbooks with resolutions that low (and I've got a very early netbook). The choice of unit isn't going to be a magic cure all or kill all for getting a design to work on a wide range of viewport sizes though. It is how the chosen unit is applied that matters. – Quentin Feb 1 '10 at 14:05
320x200, maybe not. 640x480, yes, and many pages make failed assumptions about your screen size. Of course there is no reason to ban "%" or even "px", but a layout that uses strictly "%" with no regard for reasonable minimal sizes is a failed one. – SF. Feb 1 '10 at 16:25
feedback

Your Answer

 
or
required, but never shown

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