问题
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
.
回答1:
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

回答2:
May be a bit late but you can add this css to stop word breaks:
.element {
-webkit-hyphens: none;
-moz-hyphens: none;
-ms-hyphens: none;
hyphens: none;
}
回答3:
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.
回答4:
In my situation I am trying to ensure words wrap at proper word-breaks within table cells.
I found I need the following CSS to achieve this.
table {
table-layout:fixed;
}
td {
white-space: wrap;
}
also check that nothing else is changing word-break
to break-word
instead of normal
.
回答5:
Please use nowrap and wrap value didn't come for me. nowrap solved the issue.
Use white-space: nowrap;
回答6:
I had the same problem, I solved it using following css:
.className {
white-space:pre-wrap;
word-break:break-word;
}
回答7:
Use white-space: nowrap;
CSS white-space Property
white-space: normal|nowrap|pre|pre-line|pre-wrap|initial|inherit;
Know more about white-space example
回答8:
I faced a similar problem in my grid structure and I used, word-break: break-word; in my grid and my issue got resolved.
来源:https://stackoverflow.com/questions/3775810/stop-word-wrap-dividing-words