When using a fixed width font, I'd like to specify the width of an HTML element in characters.
The "em" unit is supposed to be the width of the M character, so I should be able to use it to specify a width. This is an example:
<html>
<head>
<style>
div {
font-family: Courier;
width: 10em;
}
</style>
</head>
<body>
<div>
1 3 5 7 9 1 3 5 7 9 1
</div>
</body>
</html>
The result is not what I wanted as the browser line breaks after column 15, not 10:
1 3 5 7 9 1 3 5
7 9 1
(Result in Firefox and Chromium, both in Ubuntu.)
Wikipedia's article says that an "em" is not always the width of an M, so it definitely looks like the "em" unit can't be trusted for this.