/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
- // Text truncate
- // Requires inline-block or block for proper styling
- @mixin text-truncate() {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }