Skip to content

Instantly share code, notes, and snippets.

@jlittlejohn
Created November 8, 2013 16:07
Show Gist options
  • Save jlittlejohn/7373325 to your computer and use it in GitHub Desktop.
Save jlittlejohn/7373325 to your computer and use it in GitHub Desktop.
SCSS: Truncate (Mixin)
@mixin truncate($width){
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
width: $width;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment