You can use the word-spacing property. It defines the space between the words. If you set it to the size of the container, it will force a line break...
Since it doesn't accept percentual values, you can use relative values like vw.
div {
word-spacing: 100vw;
}
http://jsfiddle.net/ApL3h/