Skip to content

Instantly share code, notes, and snippets.

@snowman-repos
Last active October 11, 2015 09:27
Show Gist options
  • Save snowman-repos/3838118 to your computer and use it in GitHub Desktop.
Save snowman-repos/3838118 to your computer and use it in GitHub Desktop.
SASS: Ellipses
// Overflow Ellipsis
@mixin ellipsis() {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.ellipsis {
@include ellipsis;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment