CSS3: text-overflow
HTML
<p>The following two divs contains a long text that will not fit in the box. As
you can see, the text is clipped.</p>
<br>
<p>This div uses "text-overflow:ellipsis":</p>
<div class="test" style="text-overflow:ellipsis;">This is some long text that will not fit in the box</div>
<br>
<p>This div uses "text-overflow:clip":</p>
<div class="test" style="text-overflow:clip;">This is some long text that will not fit in the box</div>
CSS
body {
font-family: Consolas, Arial, Tahoma;
font-size: 0.9em;
padding: 10px;
}