Ellipsis

by kompiajaib

HTML

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

CSS

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