show/hide this revision's text 2 added 89 characters in body

You can use styles to ensure that the browser won't break lines there. CSS has a white-space property which does that. So

<span style="white-space: nowrap;">43,560</span>

should work.

If you need this more often, you should probably create a CSS class for that, though.

show/hide this revision's text 1

You can use styles to ensure that the browser won't break lines there. CSS has a white-space property which does that. So

<span style="white-space: nowrap;">43,560</span>

should work.