body { word-wrap: break-word;}

I've been using that code (above) to fit the text in the body into it's container. However what I don't like about it, is that it breaks up words.

Is there another way where it will not break up words and only line break after or before a word?

EDIT: This is for use within a UIWebView.

link|improve this question

2  
What do you suppose "break-word" means? – Josh Stodola Sep 23 '10 at 18:12
I knew that, but I say "Is there another way". – Joshua Sep 23 '10 at 18:49
feedback

2 Answers

up vote 1 down vote accepted

use white-space: wrap;. If you have set width on the element on which you are setting this it should work.

update - rendered data in Firefox alt text

link|improve this answer
Nope, still nothing. This code still displays the full text with horizontal scrollbar. body { width: 768px; white-space: wrap;} – Joshua Sep 23 '10 at 15:19
just setting width takes care of wrapping the text a you need(atleast on firefox). can you check behaviours on specific browsers and update the post – Vinay B R Sep 23 '10 at 18:06
i have updated my answer to include rendered result on firefox. – Vinay B R Sep 23 '10 at 18:13
This still does not work for me, I've edited my question to say what browser this is for. – Joshua Sep 23 '10 at 18:52
Actually got it working now! Was accidentally overriding the width without noticing! – Joshua Sep 25 '10 at 15:36
feedback

You can try this...

body{
white-space: pre; /* CSS2 */
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 */
}

{word-wrap:;} is an IE proprietary property, and not a part of css. firefox's handling is correct. Unfortunately, FF does not support a soft hyphen / . so that's not an option. You could possibly insert a hair or thin space,  /  (check me on the numeric entity) and  / , respectively.

Making {overflow: hidden;} would cut the overflow off, and {overflow: auto;} would cause the overflow to enable scrolling.

link|improve this answer
None of the examples you gave me actually work, the only one that does is word-wrap. – Joshua Sep 23 '10 at 6:31
alternative is {overflow: hidden;} and {overflow: auto;} but there is a problem to that as well. – JapanPro Sep 23 '10 at 6:39
Yeh, but that isn't what I'm looking for as overflow: hidden; would hide everything off the edge. :/ – Joshua Sep 23 '10 at 7:01
feedback

Your Answer

 
or
required, but never shown

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