I am trying to build a layout using css where all dimensions are specified in em. I was under the impression that this would allow the page to display the same way at different font sizes/zoom levels. However, I am noticing that text wraps differently as the size/zoom changes.

For example in this jsfiddle, the text displays all on one line at my native zoom and a font size of 1em, but wraps at a font size of 2em. I would expect it to either wrap/not wrap consistently since the width of the container is in em, and should therefore increase proportionally to the font size.

Am I doing something wrong, or am I just misunderstanding what em measurements are useful for?

link|improve this question

80% accept rate
feedback

3 Answers

You understood it correctly, but font-size defines the HEIGHT of the font, not the WIDTH, therefore container widths defined in em contain a different number of characters in one line in different zoom levels and font-sizes.

I think that if you change your font to a mono-spaced family, it might produce the effect that you are after. Worth a shot?

link|improve this answer
But surely the height and width of the characters stay in the same proportion as the size changes? Can it really be the case that at 1em a 't' is 12pt high and 6pt wide, but then at 2em it is 24pt high and NOT 12pt wide? If this is indeed the case, why should it be different for a monospaced font? EDIT: I see the same effect using courier. – veredesmarald Jun 3 '11 at 8:41
Just thinking about it, it is probably true that the font remains in proportion and therefore a mono-spaced font will have the same issue. A few thoughts that crossed my mind: perhaps the width of the container is rounded to whole pixels? Perhaps the space between characters doesn't stay in proportion with the font-szie change? I'm not sure, and don't have a concluding answer. – Bazzz Jun 3 '11 at 11:00
feedback

font size of 2em

There is no such thing as a 'font size of 2em'. An em is a unit in the current font size, so the statement is circular. It is margins and indents and widths that should be defined in ems, not font sizes themselves.

link|improve this answer
feedback

I have no idea why it happens. I work with fixed width and height containers, with text inside. Something like that:

<body style="font-size=80%;">
<div style="width: 30em; height: 30em">
text goes in here, and I would very much like it to stay here (not overflow) even when I adjust the font size. For this reason i sued em to size the div and was hoping that this is the intended use of this measure. Alas! this is not the case, as veredesmarald has demonstrated.
</div>
</body>

This is very annoying. I inspected the size of the div, with width and height = 1 em and a span inside containing just one capital letter M. The code is following:

<div style="font-size:1em; width:1em; height: 1em; background-color:#ddd;">
    <span style="background-color:#eee;">M</span>
</div>
<br>
<div style="font-size:2em; width:1em; height: 1em; background-color:#ddd;">
    <span style="background-color:#eee;">M</span>
</div>
<br>
<div style="font-size:3em; width:1em; height: 1em; background-color:#ddd;">
    <span style="background-color:#eee;">M</span>
</div>
<br>
<div style="font-size:4em; width:1em; height: 1em; background-color:#ddd;">
    <span style="background-color:#eee;">M</span>
</div>

and the sizes (in px) are as follows:

  • font em 1 div width 16 div height 16 span width 14
  • font em 2 div width 32 div height 32 span width 28
  • font em 3 div width 48 div height 48 span width 43
  • font em 4 div width 64 div height 64 span width 57

As you can see the width and height of the div behaves predictably. I disregard the height of the span, because it is the line height, not the font height. When I calculated the ratio of the span (i.e. font) width and the width of the div, it was CHANGING depending on the font size:

  • font em : 1 span width / div width: 0,875
  • font em : 2 span width / div width: 0,875
  • font em : 3 span width / div width: 0,895833333
  • font em : 4 span width / div width: 0,890625

This shows that depending on the font size, the text can either fit within a div, or can overflow / wrap. This makes em very difficult to work with in certain circumstances...

Did you find a solution to this problem? The only thing I can think of now is just to allow it to sometimes wrap and leave more space below so that it doesn't overflow.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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