How to word-wrap on spaces

When text breaks down into multiple lines while resizing, the text breaks in the middels of words. Is it possible to break only on spaces? css3 has a nice break-word tag, but this doesn’t work.

Breaking a text in the middle of a word is not very good readable. Is there a solution for this problem?

word-break:keep-all; did the trick instead of
word-wrap: normal;