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;
}
by kompiajaib
<div class="ellipsis">
This is some long text that will not fit in the box
</div>
div.ellipsis {
white-space: nowrap;
width: 200px;
overflow: hidden;
text-overflow: ellipsis;
}