I made the following css:
.mo {font-family: monospace; font-size: 9pt;}
td {border: solid thin #000000; padding: 4pt;}
With the following html (part of a table)
<td class="mo">abcdefg
<br />hijklmn</td>
The text is not displaying in a monospaced font in Firefox. The i is narrower and the m is wider. The table cell width is not a constraining factor as the cell above it has wider content. The displayed font looks like Arial.
It displays correctly in IE.
Why