I am encountering an issue with displaying sentences from a database. Each sentence is printed inside its own div, and I want these divs to be shown back-to-back as in a paragraph. The problem arises when a sentence is too long, causing it to drop down to the next line even though there is space in the previous line. Check out this example on JSFiddle
<div class="paragraph">
<div class="col>It is a long established fact</div>
<div class="col>that a reader</div>
<div class="col>will be distracted by the readable content of a page </div>
<div class="col>when looking at its layout.</div>
</div>