Ellipsis

by kompiajaib

HTML

<div class="ellipsis">
    This is some long text that will not fit in the box
</div>

CSS

div.ellipsis {
    white-space: nowrap; 
    width: 200px; 
    overflow: hidden;
    text-overflow: ellipsis; 
}