vote up 13 vote down star
3

give a relatively simple css:

<div style="width:150px;">
  12333-2333-233-23339392-332332323
</div>

How do I make it so that the string stays constrained to the width of 150, and simply wraps to a newline on the hyphen?

flag

25% accept rate
Did this work for you? i tried this in Firefox, and it completely removes the hyphen... – Chris Marasti-Georg Oct 16 '08 at 17:53
"this" meaning the ­ fix – Chris Marasti-Georg Oct 16 '08 at 17:54

5 Answers

vote up 20 vote down check

Replace your hyphens with this:

&shy;

It's called a "soft" hyphen.

link|flag
1  
... and it will not show up in the display unless there is an actual break there. So it is no good if you always want the hyphen displayed. – Chris Marasti-Georg Oct 20 '08 at 22:02
vote up 0 vote down

my code is px;height:60px;border:0px;font-family: Verdana;font-size: 10px;color: #444444;text-align:justify; word-break: break-all;"><%= blk1.getBlock_text() %>lools like this AGA are a tried and tested family b usiness with many satisfied customer s so how can i insert dynamically a dash when so that it looks like below AGA are a tried and tested family b -usiness with many satisfied custom -ers

link|flag
vote up 1 vote down

In this specific instance (where your string is going to contain hyphens) I'd transform the text to this server-side:

<div style="width:150px;">
  <span>12333-</span><span>2333-</span><span>233-</span><span>23339392-</span><span>332332323</span>
</div>
link|flag
vote up 1 vote down

Your example works as expected in Google Chrome, Safari (Windows), and IE8. The text breaks out of the 150px box in Firefox 3 and Opera 9.5.

Additionally &shy; won't work for your example, as it will either:

  • work when word-breaking but when not word-breaking not display any hyphens, or

  • work when not word-breaking but display two hyphens when word-breaking since it adds a hyphen on a break.

link|flag
vote up 4 vote down

Word-wrapping is part of CSS3 (read not yet fully supported) and you can find information on it at http://www.css3.info/preview/word-wrap/. Another option is the wbr tag, &shy;, and &#8203; none of which are fully supported either.

link|flag

Your Answer

Get an OpenID
or

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