Skip to content
This repository has been archived by the owner on Aug 5, 2020. It is now read-only.

Latest commit

 

History

History

ellipsis

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Text Ellipsis

Add ellipses to the end of a single line of text. The element this is applied to will need to have a width set for this to work.

Caution: This mixin forces your text to not wrap (necessary for ellipsis to work).

@include ellipsis;

Usage

.element {
    @include ellipsis;
}

Output

.element {
    overflow: hidden;

    text-overflow: ellipsis;
    white-space: nowrap;
}