/looplab/scss/bootstrap/mixins/_text-truncate.scss

https://bitbucket.org/Trulsh/personal-bootstrap-projects · Sass · 8 lines · 5 code · 1 blank · 2 comment · 0 complexity · c51a1018bf42368c45eb12d6ac16f938 MD5 · raw file

  1. // Text truncate
  2. // Requires inline-block or block for proper styling
  3. @mixin text-truncate() {
  4. overflow: hidden;
  5. text-overflow: ellipsis;
  6. white-space: nowrap;
  7. }