I think I'm beginning to unserstand what you're after. Apparently, you don't want a line-break in a sequence like aaaaaaaaaaaaaaaaaaaaaaaaaaaa - bbbbbbbbbbbbbbbbbbbbbb, whatever the position of the sequence or the width of the window. There's a simple way to achieve this. Just use:
Code:
<style>
* {white-space: nowrap}
</style>
and put '-' instead of '‑' in your document. (Also, you don't need ' ' anymore for the sole purpose of avoiding line-breaks).
Now, this may not work perfectly if the part before and / or after the hyphen ('-') is a block element. Somewhere in the source of your page I saw something that seems to force a-elements and span-elements to behave like block elements (which cause line-breaks!). Undo this by adding a, span {display: inline-block!important} to your document.
To be short, try this:
Code:
<style>
* {white-space: nowrap}
a, span {display: inline-block!important}
</style>
and put it at the end of the head section. Also, replace all '‑' width normal hyphens ('-').
Bookmarks