tags:

views:

44

answers:

1

I have some content that uses multiple punctuation marks in a row: "...what road?, others are roads..."

WebKit likes to break this between '?' and ','

Is there any way to prevent this?

+4  A: 

You can use the 'word joiner' character (U+2060, or ⁠) to prevent a line from breaking between two characters.

Should work in any standards-compliant browser.

The zero-width-no-break-space is an alternative.

Anon.