Skip to content

Instantly share code, notes, and snippets.

@uhtred
Created September 12, 2014 18:36
Show Gist options
  • Save uhtred/890c188fb2776ec2d4ae to your computer and use it in GitHub Desktop.
Save uhtred/890c188fb2776ec2d4ae to your computer and use it in GitHub Desktop.
Truncate Mixin
%truncate {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
@mixin truncate( $width: 100px ) {
@extend %truncate;
width: $width;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment