chrisj
1/9/2019 - 8:10 PM

Text Overflow With Ellipsis Mixin

/**
 * Text Overflow With Ellipsis
 *
 * Example: @include ellipsis();
 */
 
@mixin ellipsis($width: 100%) {
  display: inline-block;
  max-width: $width;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}