Ellipsis with one word

http://stackoverflow.com/questions/10338529/ellipsis-is-not-working-for-single-word/10338601#10338601

by ryanwfiorini

HTML

<div class="elip">
testing
</div>

CSS

.elip {
    overflow:hidden;
    white-space:nowrap;
    text-overflow:ellipsis;
        width:20px;
    border:solid 1px #000;
}