Skip to content

Instantly share code, notes, and snippets.

@tdwesten
Forked from pixelchar/ellipsis-mixin.scss
Last active August 29, 2015 14:08
Show Gist options
  • Save tdwesten/98449cf417333c0fc3d4 to your computer and use it in GitHub Desktop.
Save tdwesten/98449cf417333c0fc3d4 to your computer and use it in GitHub Desktop.
Add "..." to overflowd'ing content via SCSS mixin
@mixin ellipsis() {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment