anthonyshort / stitch-css

CSS patterns for Compass
http://anthonyshort.github.com/stitch-css/
260 stars 19 forks source link

Add Truncated text mixin #25

Open anthonyshort opened 12 years ago

anthonyshort commented 12 years ago

eg.

.text-truncated {
    overflow:hidden;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    -webkit-text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}