Word-Wrap Demo

How to use word-wrap to style very long, non-breaking text strings.

by NunoMira

HTML

<div class="exactFit">
<p>Here is some content for the div element</p>
<p>SomeVer yLo ngText Th atHa sNo Natur alBr eakingPo intS oTh at ItR amb lesOn.</p>
</div>

CSS

div {
    background-color: lightgray;
    padding: 10px;
    width: 200px;
    margin: 1.00em 0;
}

p {
    outline: 1px solid black;
    margin: 1.00em 0;
}