Skip to content

Instantly share code, notes, and snippets.

@robertmagnusson
Created February 11, 2014 15:30
Show Gist options
  • Save robertmagnusson/8937100 to your computer and use it in GitHub Desktop.
Save robertmagnusson/8937100 to your computer and use it in GitHub Desktop.
Text truncate mixin
@mixin text-truncate {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment