Who has solved the long-word-breaks-my-div problem? (hint: not stackoverflow) - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T05:32:54Z http://stackoverflow.com/feeds/question/320184 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/320184/who-has-solved-the-long-word-breaks-my-div-problem-hint-not-stackoverflow 17 Who has solved the long-word-breaks-my-div problem? (hint: not stackoverflow) Edward Tanguay 2008-11-26T09:53:45Z 2009-05-21T00:43:48Z <p>Ever since switching from TABLE-layout to DIV-layout, one common problem remains:</p> <p><strong>PROBLEM</strong>: you fill your DIV with dynamic text and inevitably there is a super-long word that extends over the edge of your div column and makes your site look unprofessional.</p> <p><strong>RETRO-WHINING</strong>: This <em>never</em> happened with table layouts. A table cell will always nicely expand to the width of the longest word. </p> <p><strong>SEVERITY</strong>: I see this problem on even the most major sites, especially on German sites where even common words such as "speed limit" are very long ("Geschwindigkeitsbegrenzung"). </p> <p>Even Jeff and the programmers at StackOverflow seem to have not yet solved this one:</p> <p><img src="http://tanguay.info/web/examples/divExtendProblem.png" alt="alt text" /></p> <p>Does anyone have a workable solution to this?</p> http://stackoverflow.com/questions/320184/who-has-solved-the-long-word-breaks-my-div-problem-hint-not-stackoverflow/320196#320196 16 Answer by Oli for Who has solved the long-word-breaks-my-div problem? (hint: not stackoverflow) Oli 2008-11-26T10:02:02Z 2008-11-26T13:47:44Z <p>Two fixes:</p> <ol> <li><code>overflow:scroll</code> -- this makes sure your content can be seen at the cost of design (scrollbars are ugly)</li> <li><code>overflow:hidden</code> -- just cuts off any overflow. It means people can't read the content though.</li> </ol> <p>If (in the SO example) you want to stop it overlapping the padding, you'd probably have to create another div, inside the padding, to hold your content.</p> <p>Edit: As the other answers state, there are a variety of methods for truncating the words, be that working out the render width on the client side (never attempt to do this server-side as it will never work reliably, cross platform) through JS and inserting break-characters, or using non-standard and/or wildly incompatible CSS tags (<code>word-wrap: break-word</code> <a href="http://stackoverflow.com/questions/320184/who-has-solved-the-long-word-breaks-my-div-problem-hint-not-stackoverflow#320267">doesn't appear to work in Firefox</a>).</p> <p>You will always need an overflow descriptor though. If your div contains another too-wide block-type piece of content (image, table, etc), you'll need overflow to make it not destroy the layout/design.</p> <p>So by all means use another method (or a combination of them) but remember to add overflow too so you cover all browsers.</p> <p>Edit 2 (to address your comment below):</p> <p>Start off using the CSS <code>overflow</code> property isn't perfect but it stops designs breaking. Apply <code>overflow:hidden</code> first. Remember that overflow might not break on padding so either nest <code>div</code>s or use a border (whatever works best for you).</p> <p>This will hide overflowing content and therefore you might lose meaning. You could use a scrollbar (using <code>overflow:auto</code> or <code>overflow:scroll</code> instead of <code>overflow:hidden</code>) but depending on the dimensions of the div, and your design, this might not look or work great.</p> <p>To fix it, we can use JS to pull things back and do some form of automated truncation. I was half-way through writing out some pseudo code for you but it gets seriously complicated about half-way through. If you need to show as much as possible, give <a href="http://code.google.com/p/hyphenator/" rel="nofollow">hyphenator</a> a look in (<a href="http://stackoverflow.com/questions/320184/who-has-solved-the-long-word-breaks-my-div-problem-hint-not-stackoverflow#320267">as mentioned below</a>).</p> <p>Just be aware that this comes at the cost of user's CPUs. It could result in pages taking a long time to load and/or resize.</p> http://stackoverflow.com/questions/320184/who-has-solved-the-long-word-breaks-my-div-problem-hint-not-stackoverflow/320197#320197 4 Answer by VonC for Who has solved the long-word-breaks-my-div problem? (hint: not stackoverflow) VonC 2008-11-26T10:02:07Z 2008-11-26T10:08:30Z <p>Do you mean that, in browsers that support it, <a href="http://www.w3.org/TR/css3-text/#word-wrap" rel="nofollow"><code>word-wrap: break-word</code></a> does not work ?</p> <p>If <a href="http://css-discuss.incutio.com/?page=WordWrapLongText" rel="nofollow">included in the body definition of the stylesheet</a>, it should works throughout the entire document.</p> <p>If overflow is not a good solution, only a custom javascript could artificially break up long word.</p> <p>Note: there is also this <a href="http://www.thefutureoftheweb.com/blog/breaking-long-urls" rel="nofollow"><code>&lt;wbr&gt;</code> Word Break tag</a>. This gives the browser a spot where it can split the line up. Unfortunately, the <code>&lt;wbr&gt;</code> tag doesn't work in all browsers, only Firefox and Internet Explorer (and Opera with a CSS trick).</p> http://stackoverflow.com/questions/320184/who-has-solved-the-long-word-breaks-my-div-problem-hint-not-stackoverflow/320231#320231 9 Answer by porneL for Who has solved the long-word-breaks-my-div problem? (hint: not stackoverflow) porneL 2008-11-26T10:20:49Z 2008-11-26T14:09:11Z <p>You can make it possible to split long words by inserting soft hyphen (<code>&amp;shy;</code>). </p> <pre><code>averyvery&amp;shy;longword </code></pre> <p>may be rendered as</p> <pre><code>averyverylongword </code></pre> <p>or</p> <pre><code>averyvery- longword </code></pre> <p>(Use zero-width space character if you don't want visible hyphen)</p> <p>A nice regular expression can ensure you won't be inserting them unless neccessary:</p> <pre><code>/([^\s-]{5})([^\s-]{5})/ → $1&amp;shy;$2 </code></pre> http://stackoverflow.com/questions/320184/who-has-solved-the-long-word-breaks-my-div-problem-hint-not-stackoverflow/320267#320267 5 Answer by dylanfm for Who has solved the long-word-breaks-my-div problem? (hint: not stackoverflow) dylanfm 2008-11-26T10:40:41Z 2008-11-26T10:40:41Z <p>I just found out about <a href="http://code.google.com/p/hyphenator/" rel="nofollow">hyphenator</a> from <a href="http://stackoverflow.com/questions/315845/should-i-avoid-using-text-align-justify">this question</a>. That might solve the problem.</p> http://stackoverflow.com/questions/320184/who-has-solved-the-long-word-breaks-my-div-problem-hint-not-stackoverflow/320365#320365 1 Answer by alexmeia for Who has solved the long-word-breaks-my-div problem? (hint: not stackoverflow) alexmeia 2008-11-26T11:24:01Z 2008-11-26T11:24:01Z <p>The solution I usually use for this problem is to set 2 different css rules for IE and other browsers:</p> <pre><code>word-wrap: break-word; </code></pre> <p>woks perfect in IE, but <strong>word-wrap</strong> is not a standard css property. It's a Microsfot specific property and doesn't work in Firefox.</p> <p>For Firefox, the best thing to do using only css is to set the rule</p> <pre><code>overflow: hidden; </code></pre> <p>for the element that contains the text you want to wrap. It doesn't wrap the text, but <strong>hide the part of text that go over the limit of the container</strong>. It can be a nice solution if is not essential for you to display all the text (i.e. if the text is inside an <code>&lt;a&gt;</code> tag)</p> http://stackoverflow.com/questions/320184/who-has-solved-the-long-word-breaks-my-div-problem-hint-not-stackoverflow/320406#320406 2 Answer by Snaky Love for Who has solved the long-word-breaks-my-div problem? (hint: not stackoverflow) Snaky Love 2008-11-26T11:37:55Z 2008-11-26T11:37:55Z <p>HYPHENATOR is the right answer (given above). The real problem behind your question is that web browsers are still (in 2008) extremely primitive that they do not have a hyphenation-feature. Look, we are still on the early beginnings of computer usage - we have to be patient. As long as designers rule the web world we will have a hard time waiting for some real useful new features. </p> http://stackoverflow.com/questions/320184/who-has-solved-the-long-word-breaks-my-div-problem-hint-not-stackoverflow/320467#320467 3 Answer by Edward Tanguay for Who has solved the long-word-breaks-my-div problem? (hint: not stackoverflow) Edward Tanguay 2008-11-26T11:57:12Z 2008-11-26T11:57:12Z <p>howWouldYourSiteDealWithCommentsLikeThisOnelanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogochLlanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogochLlanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogochLlanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogochwyngyllgogerychwyrndrobwllllantysiliogogogochLlanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogochLlanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogochLlanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogoch </p> http://stackoverflow.com/questions/320184/who-has-solved-the-long-word-breaks-my-div-problem-hint-not-stackoverflow/702623#702623 0 Answer by fossildesigns for Who has solved the long-word-breaks-my-div problem? (hint: not stackoverflow) fossildesigns 2009-03-31T19:18:32Z 2009-03-31T19:18:32Z <p>Why not use some js to get the length of the overall string and for every say 64 characters insert a &lt;br /&gt; character intot he string? Especially if you do it before inserting it into a database?</p> http://stackoverflow.com/questions/320184/who-has-solved-the-long-word-breaks-my-div-problem-hint-not-stackoverflow/703024#703024 0 Answer by John Gietzen for Who has solved the long-word-breaks-my-div problem? (hint: not stackoverflow) John Gietzen 2009-03-31T20:58:40Z 2009-03-31T20:58:40Z <p>Yeah, if it is possible, setting an absolute width and setting "overflow : auto" works well.</p> http://stackoverflow.com/questions/320184/who-has-solved-the-long-word-breaks-my-div-problem-hint-not-stackoverflow/703425#703425 5 Answer by Neil Monroe for Who has solved the long-word-breaks-my-div problem? (hint: not stackoverflow) Neil Monroe 2009-03-31T23:03:58Z 2009-03-31T23:03:58Z <p>This is a complex issue, as we know, and not supported in any common way between browsers. Most browsers don't support this feature natively at all.</p> <p>In some work done with HTML emails, where user content was being used, but script is not available (and even CSS is not supported very well) the following bit of CSS in a wrapper around your unspaced content block should at least help somewhat:</p> <pre><code>.word-break { /* The following styles prevent unbroken strings from breaking the layout */ width: 300px; /* set to whatever width you need */ overflow: auto; white-space: -moz-pre-wrap; /* Mozilla */ white-space: -hp-pre-wrap; /* HP printers */ white-space: -o-pre-wrap; /* Opera 7 */ white-space: -pre-wrap; /* Opera 4-6 */ white-space: pre-wrap; /* CSS 2.1 */ white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */ word-wrap: break-word; /* IE */ -moz-binding: url('xbl.xml#wordwrap'); /* Firefox (using XBL) */ } </code></pre> <p>In the case of Mozilla-based browsers, the XBL file mentioned above contains:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;bindings xmlns="http://www.mozilla.org/xbl" xmlns:html="http://www.w3.org/1999/xhtml"&gt; &lt;!-- More information on XBL: http://developer.mozilla.org/en/docs/XBL:XBL_1.0_Reference Example of implementing the CSS 'word-wrap' feature: http://blog.stchur.com/2007/02/22/emulating-css-word-wrap-for-mozillafirefox/ --&gt; &lt;binding id="wordwrap" applyauthorstyles="false"&gt; &lt;implementation&gt; &lt;constructor&gt; //&lt;![CDATA[ var elem = this; doWrap(); elem.addEventListener('overflow', doWrap, false); function doWrap() { var walker = document.createTreeWalker(elem, NodeFilter.SHOW_TEXT, null, false); while (walker.nextNode()) { var node = walker.currentNode; node.nodeValue = node.nodeValue.split('').join(String.fromCharCode('8203')); } } //]]&gt; &lt;/constructor&gt; &lt;/implementation&gt; &lt;/binding&gt; &lt;/bindings&gt; </code></pre> <p>Unfortunately, Opera 8+ don't seem to like any of the above solutions, so JavaScript will have to be the solution for those browsers (like Mozilla/Firefox.) Another cross-browser solution (JavaScript) that includes the later editions of Opera would be to use Hedger Wang's script found here: <a href="http://www.hedgerwow.com/360/dhtml/css-word-break.html" rel="nofollow">http://www.hedgerwow.com/360/dhtml/css-word-break.html</a></p> <p><strong>Other useful links/thoughts:</strong></p> <p>Incoherent Babble » Blog Archive » Emulating CSS word-wrap for Mozilla/Firefox<br /> <a href="http://blog.stchur.com/2007/02/22/emulating-css-word-wrap-for-mozillafirefox/" rel="nofollow">http://blog.stchur.com/2007/02/22/emulating-css-word-wrap-for-mozillafirefox/</a></p> <p>[OU] No word wrap in Opera, displays fine in IE<br /> <a href="http://list.opera.com/pipermail/opera-users/2004-November/024467.html" rel="nofollow">http://list.opera.com/pipermail/opera-users/2004-November/024467.html</a><br /> <a href="http://list.opera.com/pipermail/opera-users/2004-November/024468.html" rel="nofollow">http://list.opera.com/pipermail/opera-users/2004-November/024468.html</a></p> http://stackoverflow.com/questions/320184/who-has-solved-the-long-word-breaks-my-div-problem-hint-not-stackoverflow/890888#890888 0 Answer by Dan Brown for Who has solved the long-word-breaks-my-div problem? (hint: not stackoverflow) Dan Brown 2009-05-21T00:26:28Z 2009-05-21T00:43:48Z <p>If you have this -</p> <pre><code> &lt;style type="text/css"&gt; .cell { float: left; width: 100px; border: 1px solid; line-height: 1em; } &lt;/style&gt; &lt;div class="cell"&gt;TopLeft&lt;/div&gt; &lt;div class="cell"&gt;TopMiddlePlusSomeOtherTextWhichMakesItToLong&lt;/div&gt; &lt;div class="cell"&gt;TopRight&lt;/div&gt; &lt;br/&gt; &lt;div class="cell"&gt;BottomLeft&lt;/div&gt; &lt;div class="cell"&gt;BottomMiddle&lt;/div&gt; &lt;div class="cell"&gt;bottomRight&lt;/div&gt; </code></pre> <p>just switch to a vertical format with containing divs and use min-width in your CSS instead of width -</p> <pre><code> &lt;style type="text/css"&gt; .column { float: left; min-width: 100px; } .cell2 { border: 1px solid; line-height: 1em; } &lt;/style&gt; &lt;div class="column"&gt; &lt;div class="cell2"&gt;TopLeft&lt;/div&gt; &lt;div class="cell2"&gt;BottomLeft&lt;/div&gt; &lt;/div&gt; &lt;div class="column"&gt; &lt;div class="cell2"&gt;TopMiddlePlusSomeOtherTextWhichMakesItToLong&lt;/div&gt; &lt;div class="cell2"&gt;BottomMiddle&lt;/div&gt; &lt;/div&gt; &lt;div class="column"&gt; &lt;div class="cell2"&gt;TopRight&lt;/div&gt; &lt;div class="cell2"&gt;bottomRight&lt;/div&gt; &lt;/div&gt; &lt;br/&gt; </code></pre> <p>Of course, if you are displaying genuine tabular data it is ok to use a real table as it is semantically correct and will inform people using screen readers that is supposed to be in a table. It is using them for general layout or image-slicing that people will lynch you for.</p>