Prevent long word to add horizontal scroll to html view - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T03:48:56Z http://stackoverflow.com/feeds/question/249460 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/249460/prevent-long-word-to-add-horizontal-scroll-to-html-view 1 Prevent long word to add horizontal scroll to html view Steven 2008-10-30T07:07:00Z 2008-10-30T07:42:50Z <p>On Windows Mobile, I am displaying my output in HTML. This includes lots of user-generated strings. Occasionally there are situations where a really large string is part of the output that has no whitespaces or punctuation. </p> <p>Unfortunately the Windows Mobile's HTML view (htmlview.dll, based on Pocket Internet Explorer) does not break these long words down so they fit on screen. Instead a horizontal scrollbar is added and the user has to scroll sideways to see the whole word. This also affects other output which now also is spread along this larger screen width.</p> <p>Is there any possibility to either make the htmlview behave differently, or to force the word to break? CSS can be used. Regarding the forcing: The &amp;shy; tag is ALWAYS inserting a "-" character and never causes a breaks, the &lt;WBR&gt; tag is not doing anything at all, &amp;8203; is output as &amp;8203:, empty tags like <B></B> also do nothing. Also it should be noted that this code is running on multiple screen sizes and due to other parts of the HTML output I am not 100% sure how much screen width I have left.</p> <p>P.S.: My app is compiled using the WM 5.0 SDK and is written in C++/Win32/MFC.</p> http://stackoverflow.com/questions/249460/prevent-long-word-to-add-horizontal-scroll-to-html-view/249488#249488 0 Answer by nickf for Prevent long word to add horizontal scroll to html view nickf 2008-10-30T07:27:08Z 2008-10-30T07:27:08Z <p>I don't know pretty much anything about Windows Mobile, so I could be way off, but what you could try doing is inserting HTML entities at certain periods throughout long words which act as hyphenation "hints".</p> <p>Since I assume it's only IE which runs on WinMo, the entity you'd be looking for is called the "shy hyphen": <code>&amp;shy;</code> It's basically a character which tells the browser that "this point would be a good place to break the word, only if you need to". If it does need to break the word over two (or more!) lines, then a hyphen is inserted, otherwise it is completely invisible.</p> <p>I found this info <a href="http://gojomo.blogspot.com/2005/03/cross-browser-invisible-word-break-in.html" rel="nofollow">here</a>, which also has more details about how to do this in other browsers.</p> <p>The way I'd get them into your HTML in the first place would be to search for words which are longer than X characters (say, 30), and then in those words, after every Y characters (say, 20), insert the <code>&amp;shy;</code></p> http://stackoverflow.com/questions/249460/prevent-long-word-to-add-horizontal-scroll-to-html-view/249505#249505 1 Answer by Konrad Rudolph for Prevent long word to add horizontal scroll to html view Konrad Rudolph 2008-10-30T07:37:25Z 2008-10-30T07:37:25Z <p>Besides the shy hypen as mentioned by nickf, you can always use CSS to hide overshooting words by settings the box's style to <code>overflow: hidden</code>. Good news: no scrollbar, ma. Bad news: word is cut. For the shy hypen, I wouldn't go with the entity, though. Instead, use the character directly in your text: its character code is 0xAD (Unicode +00AD). (Entities are generally deprecated by the use of a correct encoding.)</p>