I've been using

word-wrap: break-word

to word wrap text in divs and spans, but it doesn't seem to work in table cells. I have a table set to width:100%, with one row and two columns. Text in columns, although styled with the above word-wrap attribute, doesn't wrap and causes the text to go past the bounds of the cell.

Any suggestions on how to work this? This happens on FF, Chrome and IE.

EDIT: Here's what the source looks like:

<table style="width: 100%;"><tr>
<td align="left"><div style="word-wrap: break-word;">looooooooooo...ng word</div></td>
<td align="right"><span style="display: inline;">Foo</span></td>
</tr></table>

The text "loooooooooooooo...ng" it larger than the bounds of my page but it doesn't break with the above html. I've tried the suggestions below of adding text-wrap:suppress and text-wrap:normal but neither helped.

link|improve this question

Can you provide the HTML code for this? – rahul Aug 11 '09 at 4:06
add hard-hyphen. <tr> <td style="text-wrap:normal;word-wrap:break-word"> This is a pre-sentation. </td> </tr> – AVD Aug 11 '09 at 6:27
Unfortunately, the text in there comes from user-generated content. Of course, I could pre-process it and add the hyphen, but I was hoping there would be a better way. – psychotik Aug 11 '09 at 6:36
I apologize for using word 'hard-hyphen'. In HTML, the plain hyphen is represented by the "-" character (&#45; or &#x2D;). The soft hyphen is represented by the character entity reference &shy; (&#173; or &#xAD;) – AVD Aug 11 '09 at 6:58
Are you really using <code>break-wor<em>k</em></code>? Maybe that could have something to do with it. – Ms2ger Aug 11 '09 at 9:15
feedback

16 Answers

The following works for me in IE. Note the addition of table-layout:fixed:

<table style="table-layout: fixed">
<tr><td style="word-wrap: break-word">LongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongLongWord</td></tr>
</table>
link|improve this answer
1  
Hey @Marc, thank you so much for your answer. I've been searching for this solution for so long. – RAS Apr 15 '11 at 10:28
5  
Thanks. I needed to add width:100% on the table element for it to work for me. – Dave Jun 19 '11 at 4:19
1  
Worked for me as well, though VS2010 didn't recognize the "word-wrap:break-word" line, but I think VS only recognizes CSS 2.0. – ewomack Jul 8 '11 at 16:12
@ewomac yeah, sometimes I just have to ignore the VS2010 errors about HTML/CSS if I know it will work in the browser. – Marc Aug 11 '11 at 16:19
2  
@marc!! dude, thanks so much for this. I was tasked with building a mobile version of a client site that uses tables, and i was having trouble getting this to work! table-layout:fixed did the trick! – debug Sep 14 '11 at 21:47
show 2 more comments
feedback
<td style="word-break:break-all;">longtextwithoutspace</td>

or

<span style="word-break:break-all;">longtextwithoutspace</span>
link|improve this answer
This doesn't work great for text with some spaces, for example long text with andthenlongerwithoutspaces. See my anwer for details. – Piotr Findeisen Feb 3 '11 at 9:58
Can confirm that Pratik's approach works on Safari on iOS (iPhone) too. – occulus Mar 24 '11 at 14:43
To work around the problem with some short and some long words, you could potentially preprocess the text and wrap only long words (say, > 40 chars) in the <span>. – nornagon Jun 2 '11 at 8:30
3  
this don't support by firefox, opera – meotimdihia Jul 8 '11 at 22:24
feedback

A long shot, but double-check with Firebug (or similar) that you aren't accidentally inheriting the following rule:

white-space:nowrap;

This may override your specified line break behaviour.

link|improve this answer
3  
Thank you! This was exactly what messed up my layout. – Silas Hansen Feb 17 '11 at 16:35
2  
This is the behavior I was looking for! No line breaking! Thanks. – user334639 Aug 9 '11 at 12:19
feedback

As mentioned, putting the text within <div> almost works, you just have to specify the width of the <div>, which is fortunate for layouts which are static.

This works on FF 3.6, IE 8, Chrome.

<td>
<div style="width: 442px; word-wrap: break-word">
&amp;amp;amp;amp;&amp;amp;amp;amp;&amp;amp;amp;amp;&amp;amp;amp;amp;&amp;amp;amp;amp;&amp;amp;amp;amp;&amp;amp;amp;amp;
</div>
</td>

link|improve this answer
This is how I've handled this problem in the past. – Stephen Aug 16 '11 at 0:08
This requires adding a div to all table cells :/ – Clément Dec 13 '11 at 10:59
feedback

Turns out there's no good way of doing this. The closest I came is adding "overflow:hidden;" to the div around the table and losing the text. The real solution seems to be to ditch table though. Using divs and relative positioning I was able to achieve the same effect, minus the legacy of <table>

link|improve this answer
1  
-1 because the other answers indicate that there are actually ways of doing this. Not knowing the answer doesn't mean there is no answer. – fluffy Aug 23 '11 at 15:52
4  
Heh, look at the date of this post and then look at the date of other answers. Then, apply some historical knowledge about the rate of browser advancement between the two. :) – psychotik Aug 23 '11 at 16:35
1  
A fair point, but my criticism still stands. Even if those attributes are new (or newly-supported, anyway, same difference for HTML), "absence of evidence is not evidence of absence" as the saying goes. – fluffy Aug 23 '11 at 18:04
+1 Tables should be ditched anyway for things that are not tabular in nature. – Jeff Hines Oct 19 '11 at 23:51
@fluffy: Except that no actual solution was given yet, that didn't require breaking the layout of all the other columns. – Clément Dec 13 '11 at 11:00
feedback

Problem with

<td style="word-break:break-all;">longtextwithoutspace</td>

is that it will work not so good when text has some spaces, e.g.

<td style="word-break:break-all;">long text with andthenlongerwithoutspaces</td>

If word andthenlongerwithoutspaces fits into table cell in one line but long text with andthenlongerwithoutspaces does not, the long word will be broken in two, instead of being wrapped.

Alternative solution: insert U+200B (ZWSP), U+00AD (soft hyphen) or U+200C (ZWNJ) in every long word after every, say, 20th character.

link|improve this answer
feedback
 <p style="overflow:hidden;width:200px;word-wrap:break-word;">longtexthere<p>
link|improve this answer
Thanks for anonymous voter, now i have earned a necromancer badge :-D – Sarawut Positwinyu Aug 25 '11 at 4:49
feedback

Text from http://www.w3.org/TR/css3-text/#word-wrap

This property specifies whether the UA may break within a word to prevent overflow when an otherwise-unbreakable string is too long to fit within the line box. It only has an effect when 'text-wrap' is either 'normal' or 'suppress'. Possible values

link|improve this answer
This sounds promising, but doesn't seem to work. Maybe I'm missing something? I've pasted the code block above. – psychotik Aug 11 '09 at 6:18
feedback

Check out this demo

<table style="width: 100%;">
<tr>
    <td align="left"><div style="word-break:break-all;">LongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWordLongWord</div>
    </td>
    <td align="right">
        <span style="display: inline;">Foo</span>
    </td>
</tr>
</table>

Here is the link to read

link|improve this answer
feedback

The only thing that needs to be done is add width to the <td> or the <div> inside the <td> depending on the layout you want to achieve.

eg:

<table style="width: 100%;" border="1"><tr>
<td align="left" ><div style="word-wrap: break-word; width: 100px;">looooooooooodasdsdaasdasdasddddddddddddddddddddddddddddddasdasdasdsadng word</div></td>
<td align="right"><span style="display: inline;">Foo</span></td>
</tr></table>

or

 <table style="width: 100%;" border="1"><tr>
    <td align="left" width="100" ><div style="word-wrap: break-word; ">looooooooooodasdsdaasdasdasddddddddddddddddddddddddddddddasdasdasdsadng word</div></td>
    <td align="right"><span style="display: inline;">Foo</span></td>

</tr></table>
link|improve this answer
feedback

Tested in IE 8 and Chrome 13.

<table style="table-layout: fixed; width: 100%">
    <tr>
        <td align="left">
              <div style="word-wrap: break-word;">
                 longtexthere
              </div>
        </td>
        <td align="right"><span style="display: inline;">Foo</span></td>
    </tr>
</table>

This causes the table to fit the width of the page and each column to take up 50% of the width.

If you prefer the first column to take up more of the page, add a width: 80% to the td as in the following example, replacing 80% with the percentage of your choice.

<table style="table-layout: fixed; width: 100%">
    <tr>
        <td align="left" style="width:80%">
               <div style="word-wrap: break-word;">
                 longtexthere
               </div>
            </td>
        <td align="right"><span style="display: inline;">Foo</span></td>
    </tr>
</table>
link|improve this answer
feedback

Tables wrap by default, so make sure the display of the table cells are table-cell:

td {
   display: table-cell;
}
link|improve this answer
feedback

It appears you need to set word-wrap:break-word; on a block element (div), with specified (non relative) width. Ex:

<table style="width: 100%;"><tr>
<td align="left"><div style="display:block; word-wrap: break-word; width: 40em;">loooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong word</div></td>
<td align="right"><span style="display: inline;">Foo</span></td>
</tr></table>

or using word-break:break-all per Abhishek Simon's suggestion.

link|improve this answer
yours was the only one that worked. You do have to set the width or maximum width on the div inside the td. Without the width specified it did not work for me. – Johnny Aug 30 '11 at 0:54
It's a matter of CSS support not being uniform. They all will work in different ways. – stslavik Aug 30 '11 at 16:38
table with a style "table-layout:fixed" and div in a table cell with a style "display:block; word-wrap:break-word; width:auto;" worked for me. – Erhan Dec 24 '11 at 13:46
feedback

I found a solution that seems to work in FF Chr IE7-9. For doing a 2 column table layout with long text on the one side. I searched all over for similar problem, and what worked in one browser vroke the other, or adding more tags to a table just seems like bad coding.

I did NOT use a table for this. DL DT DD to the rescue. At leats for fixing a 2 column layout, that is basically a glossary/dictionary/word-meaning setup.

<dl>
<dt>test1</dt>
<dd>Fusce ultricies mi nec orci tempor sit amet</dd>
<dt>test2</dt>
<dd>Fusce ultricies</dd>
<dt>longest</dt>
<dd>
Loremipsumdolorsitametconsecteturadipingemipsumdolorsitametconsecteturaelit.Nulla
 laoreet ante et turpis vulputate condimentum. In in elit nisl. Fusce ultricies mi nec orci tempor sit amet luctus dui convallis. Fusce viverra rutrum ipsum, in sagittis eros elementum eget. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per.
</dd>
</dl>

And some generic styling.

dl {
    margin-bottom:50px;
}

dl dt {
    background:#ccc;
    color:#fff;
    float:left;
    font-weight:bold;
    margin-right:10px;
    padding:5px;
    width:100px; 
}

dl dd {
    margin:2px 0;
    padding:5px 0;
    word-wrap:break-word;
    margin-left:120px;
}

Using Float Word-Wrap and Margin Left i got exactly what i needed. Just thought i'd share this wiht others, maybe it will help someone else wiht a 2 column definition style layout, with trouble getting the words to wrap.

I tried using word-wrap in the tbale cell, but it only worked in IE9, (and FF Chr of coarse) mainly trying to fix the broken IE browser here.

link|improve this answer
feedback

A solution which work with chrome/FF (not tested with IE) is to display tab-cell as a block element.

link|improve this answer
feedback

this worked for me: http://perishablepress.com/press/2010/06/01/wrapping-content/

the other solutions on this page didn't work.

link|improve this answer
feedback

protected by Community Dec 1 '11 at 17:35

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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