CSS word-wrap property
This example describes the most important value of the word-wrap property which is break-word.
by bizamajig
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="text-limit">
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;
}
.text-limit {
}