I have a line of text in a div that might look like the following:

A really long user defined team Name 1 (7-0)

Where 7-0 would be the team record. This is in a div of a specific width and sometimes the browser likes to break on the hyphen which is unwanted because it should be treated the same as a word. So I might end up with:

A really long user defined team Name 1 (7
-0)

Is there a way to get word wrap working where it treats the hyphen as if it were a normal character and not a place that should support a break?

link|improve this question

75% accept rate
feedback

2 Answers

up vote 2 down vote accepted

http://jsfiddle.net/zfsYK/4/

here you go..

I just wrapped the text that you do not want to break in a div set to display:inline..

can't seem to make it break now

link|improve this answer
Thanks for the tip. I added a width to the outside div: jsfiddle.net/zfsYK/2 and it works great in firefox but it's still breaking in chrome for me. Are you seeing the same? – user417918 Aug 14 '11 at 4:55
ah chrome... odd one sec – samccone Aug 14 '11 at 4:57
jsfiddle.net/zfsYK/4 ok fixed just had to make it inline-block... i left inline in above for fallback when inline-block is not supported @user417918 – samccone Aug 14 '11 at 4:59
Awesome, works great. Thanks!! – user417918 Aug 14 '11 at 5:01
feedback

Although the accepted answer does te job just fine, you should consider to use the somewhat more obvious css style for this:

CSS:

.together {
    white-space: nowrap;
}

HTML:

<p>A really long user defined team Name 1 <span class="together">(7-0)</span></p>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.