CSS word-wrap property

This example describes the most important value of the word-wrap property which is break-word.

by Shreerang Patwardhan

HTML

<p>
    Show me that smile again. (Show me that smile) Dont waste another minute on your cryin. We're nowhere near the end (nowhere near) The best is ready to begin. Oooohhh.AslongaswegoteachotherWegottheworldspinninright inourhands.
</p>
<br />
<p class="break-word">
    Show me that smile again. (Show me that smile) Dont waste another minute on your cryin. We're nowhere near the end (nowhere near) The best is ready to begin. Oooohhh.AslongaswegoteachotherWegottheworldspinninright inourhands.
</p>

CSS

p{
    width: 350px;
    border: solid 1px grey;
}

.break-word{
    word-wrap: break-word;
}