vote up 2 vote down star

When I insert a continuous string of text in a fixed width "td", the text is not wrapping. Pls let me know why? Here are the links to the html pages.

textstring with space
textstring without space

flag

76% accept rate
What are you really asking? Do you want to know why the browsers behavior is such that it does not wrap the text, do you want to know what the behavior should be according to the specifications, or do you want a solution to a layout problem you have in one of your own projects? – Daan Jan 30 at 14:55
Yes I want to know why the browsers behavior is such that it does not wrap the text. – Shivanand Feb 2 at 10:04

3 Answers

vote up 1 vote down check

I wonder if this might help:

<p style="width: 100em; word-wrap: break-word">ThisTexthasnoSpacesThisTexthasnoSpacesThisTexthasnoSpacesThisTexthasnoSpacesThisTexthasnoSpaces</p>

Unfortunately, that requires you to know how wide you want your column to be.

link|flag
If you want the collumn to wrap, you probably know how wide it should be. – Ikke Jan 30 at 11:18
@Ikke: fair point! – Ben Jan 30 at 11:25
If I give the width in percentages it doesn't work. Does it take only pix, em, pt? – Shivanand Jan 30 at 13:49
@Shivanand: Yes, as far as I know you can't specify the width of a <p> in percentages. – Ben Jan 30 at 16:48
vote up 3 vote down

You can add soft-hyphens: &shy;. Put them within the long word.

Have a look at it with this:

This&shy;Texthasno&shy;SpacesThis&shy;Texthasno&shy;Spaces&shy;This&shy;Texthasno&shy;Spaces&shy;ThisText&shy;hasno&shy;Spaces&shy;This&shy;Texthasno&shy;Spaces

(deliberate over-use of &shy;)

This is the hyphenator, you might find it helps.

link|flag
vote up 0 vote down

You'll notice that a lot of popular sites (like Facebook) will insert a space in your word if you make it too long. It's the common solution, so don't be afraid of doing it.

link|flag

Your Answer

Get an OpenID
or

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