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.